equal_range

Finds both the first and last position in a range where an element based upon a key would be inserted.

  pair<iterator, iterator> equal_range (const_key_type &x);
  pair<const_iterator, const_iterator> equal_range
  (const key_type& x) const;
  
Remarks

Returns a pair of elements representing a range for insertion.