equal_range overloads
Declared in <bslstp_hashmap.h>
Return iterators delimiting all elements with the specified __key.
pair<iterator, iterator>
equal_range(key_type const& __key);
» more...
Return const iterators delimiting all elements with the specified __key.
pair<const_iterator, const_iterator>
equal_range(key_type const& __key) const;
» more...
| Name | Description |
|---|---|
| __key | key whose equal range is returned |