std::make_signed
From Cppreference
Defined in header <type_traits>
|
||
template< class T >
struct make_signed; |
(C++11 feature) | |
Given an integral (except bool) or enumeration type T, provides the member typedef type which is the signed integer type corresponding to T, with the same cv-qualifiers.
[edit] Member types
Name | Definition |
type | the signed integer type corresponding to T |
[edit] Example
This section is incomplete |
[edit] See also
|
checks if a type is signed arithmetic type (class template) |
||
|
checks if a type is unsigned arithmetic type (class template) |
||
|
makes the given integral type unsigned (class template) |