std::experimental::ranges::UnsignedIntegral
来自 cppreference.com
< cpp | experimental | ranges
定义在头文件 <experimental/ranges/concepts> 中 |
||
template< class T > concept bool UnsignedIntegral = Integral<T> && !SignedIntegral<T>; |
(范围 TS) | |
当且仅当 T
是一个整数类型且 std::is_signed<T>::value 为 false 时,UnsignedIntegral<T>
概念成立。
[编辑] 注释
UnsignedIntegral<T>
可能会被一个不是 无符号整型 的类型满足,例如 bool。
[编辑] 另请参阅
(C++11) |
检查一个类型是否为整数类型 (类模板) |
(C++11) |
检查一个类型是否为有符号算术类型 (类模板) |