[#bsl-multimap-0ae-equal_range-00] = xref:bsl.adoc[bsl]::xref:bsl/multimap-0ae.adoc[multimap]::equal_range :relfileprefix: ../../ :mrdocs: Return the half‐open range of elements equivalent to `key`. == Synopses Declared in `<bslstl_multimap.h>` Return the half‐open range of elements equivalent to `key`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/pair-0b.adoc[bsl::pair<iterator, iterator>] xref:bsl/multimap-0ae/equal_range-0a.adoc[equal_range](xref:bsl/multimap-0ae/key_type.adoc[key_type] const& key); ---- [.small]#xref:bsl/multimap-0ae/equal_range-0a.adoc[_» more..._]# Return the half‐open range of elements equivalent to `key`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/pair-0b.adoc[pair<const_iterator, const_iterator>] xref:bsl/multimap-0ae/equal_range-07.adoc[equal_range](xref:bsl/multimap-0ae/key_type.adoc[key_type] const& key) const; ---- [.small]#xref:bsl/multimap-0ae/equal_range-07.adoc[_» more..._]# Return the half‐open range of elements equivalent to `key`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class LOOKUP_KEY> xref:bsl/pair-0b.adoc[pair<iterator, iterator>] xref:bsl/multimap-0ae/equal_range-0c.adoc[equal_range](LOOKUP_KEY const& key) requires BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR, LOOKUP_KEY>::value; ---- [.small]#xref:bsl/multimap-0ae/equal_range-0c.adoc[_» more..._]# Return the half‐open range of elements equivalent to `key`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class LOOKUP_KEY> xref:bsl/pair-0b.adoc[pair<const_iterator, const_iterator>] xref:bsl/multimap-0ae/equal_range-04.adoc[equal_range](LOOKUP_KEY const& key) const requires BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR, LOOKUP_KEY>::value; ---- [.small]#xref:bsl/multimap-0ae/equal_range-04.adoc[_» more..._]# == Return Value * pair of iterators delimiting the equivalent range * pair of const iterators delimiting the equivalent range == Parameters [cols="1,4"] |=== | Name| Description | *key* | key value to look up |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#