C++ 参考手册

位置:首页 > C++ 参考手册 >概念库 (C++20) > std::unsigned_integral

定义于头文件 <concepts>
template < class T >
concept unsigned_integral = std::integral<T> && !std::signed_integral<T>;
(C++20 起)

概念 unsigned_integral<T> 若且唯若 T 是整数类型且 std::is_signed_v<T>false 才得到满足。

注意

unsigned_integral<T> 可以为不是有符号整数类型的类型,例如 bool 所满足。

参阅

检查类型是否为整型
(类模板)
(C++11)
检查类型是否为有符号算术类型
(类模板)