First page Back Continue Last page Graphics
INPUT ITERATOR OPERATIONS
*iter : Provides read access to the actual element
iter->member : Provides read access to a member (if any) of the actual element
++iter : Steps forward (returns new position)
iter++ : Steps forward (returns old position)
iter1 == iter2 : returns whether two iterators are equal
iter1 != iter2 : returns whether two iterators are not equal