First page Back Continue Last page Graphics
ITERATOR OPERATIONS
begin() returns a value that denotes the beginning of a container.
- It returns an iterator positioned at the initial element of the container
end() returns a value that denotes "one past" the end of a container.
- It returns an iterator positioned "one past" the end element. If (iter == students.end), we're through!