Function is_between¶
function is_between(T, std::type_identity_t<T>, std::type_identity_t<T>) meta¶
template <typename T>
KFR_INTRINSIC constexpr bool is_between(T value, std::type_identity_t<T> min,
std::type_identity_t<T> max) noexcept(noexcept(value >= min &&
value <= max)) { … }
| T | value type |
| value | value to test |
| min | lower bound (inclusive) |
| max | upper bound (inclusive) |
Fully qualified name: kfr::is_between(T, std::type_identity_t<T>, std::type_identity_t<T>)
Declared at meta.hpp:1181
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.