std::experimental::ranges::Integral

Header: <experimental/ranges/concepts>

The concept Integral is satisfied if and only if T is an integral type.

# Declarations

template< class T >
concept bool Integral = std::is_integral<T>::value;

(ranges TS)

# See also