equal_range

Function Details

equal_range(const key_type &x) const
 

Find the range within which all keys equal to specified key x.

Parameters

x

The target key to find.

Return Value

The range [first, last).

equal_range(const key_type &x,
    bool readonly=false)
 

Find the range within which all keys equal to specified key x.

Parameters

x

The target key to find.

readonly

Whether the returned iterator is readonly.

Return Value

The range [first, last).

Group: Searching Functions

See of db_map's searching functions group for details about iterator, function version and parameters.

Class

db_multimap