A type that satisfies integral arithmetic. More...
The Integral concept is satisfied by any type modelling the built-in integer types: char, short, int, long, and their unsigned counterparts.
template <typename T>
concept Integral = detail::is_integral<T>::value;
A box holding any Integral type | |