std::in_range
| Defined in header <utility>
|
||
| template< class R, class T > constexpr bool in_range( T t ) noexcept; |
(since C++20) | |
Returns true if the value of t is in the range of values that can be represented in R, that is, if t can be converted to R without data loss.
It is a compile-time error if either T or R is not a signed or unsigned integer type (including standard integer type and extended integer type).
Contents |
[edit] Parameters
| t | - | value to test |
[edit] Return value
true if the value of t is representable in R, false otherwise.
[edit] Possible implementation
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()); } |
[edit] Notes
This function cannot be used with enums (including std::byte), char, char8_t, char16_t, char32_t, wchar_t and bool.
[edit] Example
#include <utility> #include <iostream> #include <iomanip> 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'; }
Output:
false true
[edit] See also
| (C++20) |
returns the smaller of the given values (niebloid) |
| (C++20) |
returns the greater of the given values (niebloid) |
| (C++20) |
clamps a value between a pair of boundary values (niebloid) |
| (C++20) |
linear interpolation function (function) |

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
