multimap::end

Returns the past-the-end iterator.

const_iterator end( ) const;

iterator end( );

Return Value

The past-the-end iterator. If the multimap is empty, then multimap::end() == multimap::begin().

Remarks

end is used to test whether an iterator has passed the end of its multimap.

The value returned by end should not be dereferenced.

For a code example, see multimap::find.

Requirements

Header: <map>

Namespace: std

See Also

Reference

multimap Class

Standard Template Library