template< class T >
struct make_unsigned;
If T
is an integral (except bool) or enumeration type, provides the member typedef type
which is the unsigned integer type corresponding to T
, with the same cv-qualifiers.
If T
is signed or unsigned char, short, int, long, long long; the unsigned type from this list corresponding to T
is provided.
If T
is an enumeration type or char, wchar_t, char8_t(since C++20), char16_t, char32_t; the unsigned integer type with the smallest rank having the same sizeof
as T
is provided.
Otherwise, the behavior is undefined.
(until C++20)Otherwise, the program is ill-formed.
(since C++20)If the program adds specializations for std::make_unsigned
, the behavior is undefined.
type
the unsigned integer type corresponding to T
[edit] Helper types
template< class T >
using make_unsigned_t = typename make_unsigned<T>::type;
#include <type_traits> int main() { using uchar_type = std::make_unsigned_t<char>; using uint_type = std::make_unsigned_t<int>; using ulong_type = std::make_unsigned_t<volatile long>; static_assert( std::is_same_v<uchar_type, unsigned char> and std::is_same_v<uint_type, unsigned int> and std::is_same_v<ulong_type, volatile unsigned long> ); }[edit] See also checks if a type is a signed arithmetic type
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4