forward_iterator_tag Struct

A class that provides a return type for iterator_category function that represents a forward iterator.

struct forward_iterator_tagĀ 
   : public input_iterator_tag {};

Remarks

The category tag classes are used as compile tags for algorithm selection. The template function needs to find out what is the most specific category of its iterator argument so that it can use the most efficient algorithm at compile time. For every iterator of type Iterator, iterator_traits<Iterator>::iterator_category must be defined to be the most specific category tag that describes the iterator's behavior.

The type is the same as iterator<Iter>::iterator_category when Iter describes an object that can serve as a forward iterator.

Example

See iterator_traits or random_access_iterator_tag for an example of how to use the iterator_tags.

Requirements

Header: <iterator>

Namespace: std

See Also

Reference

input_iterator_tag Struct

Thread Safety in the Standard C++ Library

Standard Template Library