std::incrementable
From cppreference.com
Defined in header <iterator>
|
||
template<class I> concept incrementable = |
(since C++20) | |
The concept incrementable<T> is satisfied if and only if T is weakly_incrementable, equality preserving, and is equality_comparable.
See also
(C++20) |
specifies that a semiregular type can be incremented with pre- and post-increment operators (concept) |
(C++20) |
specifies that a type is the same as another type (concept) |