Share via


checked_iterator::operator++

Increments the checked_iterator to the next element.

checked_iterator<_Cont, _Iter>& operator++( ); 
checked_iterator<_Cont, _Iter> operator++( int );

Return Value

The first operator returns the preincremented checked_iterator and the second, the postincrement operator, returns a copy of the incremented checked_iterator.

See checked_iterator::operator>= for a code sample.

Remarks

For more information, see Checked Iterators.

Requirements

Header: <iterator>

Namespace: std

See Also

Reference

checked_iterator Class

Standard Template Library

Other Resources

checked_iterator Members