std::meta::is_unsigned_type
From cppreference.com
| Defined in header <meta>
|
||
consteval bool is_unsigned_type( std::meta::info r );
|
(since C++26) | |
Returns true if r is a reflection of an unsigned arithmetic type. Otherwise returns false.
Parameters
| r | - | a reflection value |
Return value
true if r represents an unsigned arithmetic type; otherwise false.
Exceptions
Throws std::meta::exception if r does not represent a type or type alias.
Example
Run this code
#include <meta>
static_assert(!is_unsigned_type(^^signed));
static_assert( is_unsigned_type(^^unsigned));
static_assert(!is_unsigned_type(^^int));
static_assert( is_unsigned_type(^^bool));
static_assert(!is_unsigned_type(^^float));
int main() {}
See also
(C++26) |
checks if reflection represents a signed arithmetic type (function) |
(C++26) |
checks if reflection represents an arithmetic type (function) |
(C++26) |
obtains the corresponding unsigned type for reflected integral type (function) |
(C++11) |
checks if a type is an unsigned arithmetic type (class template) |
(C++11) |
checks if a type is an arithmetic type (class template) |
(C++11) |
obtains the corresponding unsigned type for the given integral type (class template) |
[static] |
identifies signed types (public static member constant of std::numeric_limits<T>)
|