|
constexpr |
Resolves to true
, if a given type is iteratable, and to false
otherwise.
T | A 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.