ForwardIterator
C++ concepts: ForwardIterator
A ForwardIterator
is an Iterator
that can read data from the pointed-to element.
Unlike InputIterator
and OutputIterator
, it can be used in multipass algorithms.
Requirements
The type It
satisfies ForwardIterator
if.
- The type
It
satisfiesInputIterator
- The type
It
satisfiesDefa