Concept MutableForwardIteratorconcept MutableForwardIterator<typename X> : ForwardIterator<X>, BasicOutputIterator<X> {
requires SameType<reference, value_type&>, SameType<pointer, value_type*>;
};Where Defined#include <iterator> DescriptionThe MutableForwardIterator concept builds on the ForwardIterator concept by introducing the ability to modify the values referenced by the iterator.
|