std::in_range
来自 cppreference.com
定义在头文件 <utility> 中 |
||
template< class R, class T > constexpr bool in_range( T t ) noexcept; |
(自 C++20) | |
如果 t 的值在 R
中可以表示的值范围内,则返回 true,也就是说,如果 t 可以以保持值的方式转换为 R
。
如果 T
或 U
是非 整数 类型、字符类型或 bool,则为编译时错误。
内容 |
[编辑] 参数
t | - | 要测试的值 |
[编辑] 返回值
如果 t 的值在 R
中可表示,则返回 true,否则返回 false。
[编辑] 可能的实现
template<class R, class T> constexpr bool in_range(T t) noexcept { return std::cmp_greater_equal(t, std::numeric_limits<R>::min()) && std::cmp_less_equal(t, std::numeric_limits<R>::max()); } |
[编辑] 注释
此函数不能与 枚举(包括 std::byte)、char、char8_t、char16_t、char32_t、wchar_t 和 bool 一起使用。
功能测试 宏 | 值 | Std | 功能 |
---|---|---|---|
__cpp_lib_integer_comparison_functions |
202002L | (C++20) | 整数比较函数 |
[编辑] 示例
运行此代码
#include <iostream> #include <utility> int main() { std::cout << std::boolalpha; std::cout << std::in_range<std::size_t>(-1) << '\n'; std::cout << std::in_range<std::size_t>(42) << '\n'; }
输出
false true
[编辑] 另请参阅
(C++20) |
返回给定值中较小的一个 (niebloid) |
(C++20) |
返回给定值中较大的一个 (niebloid) |
(C++20) |
将值限制在一对边界值之间 (niebloid) |
(C++20) |
线性插值函数 (函数) |