chsvlib
chsv helper source code

◆ is_iteratable_type_v

constexpr bool is_iteratable_type_v = is_iteratable_type<T>::value
constexpr

Resolves to true, if a given type is iteratable, and to false otherwise.

Template Parameters
TA type to check against.

A type T is iteratable, if, given an object t of the type T, the expressions std::begin(t) and std::end(t) are valid and returns an object of a type I, which satisfies the Iterator requirements.