[#bsl-multimap-0ae-find-0c] = xref:bsl.adoc[bsl]::xref:bsl/multimap-0ae.adoc[multimap]::find :relfileprefix: ../../ :mrdocs: `find` overloads == Synopses Declared in `<bslstl_multimap.h>` Return an iterator providing modifiable access to the first `value_type` object in this multimap whose key is equivalent to the specified `key`, if such an entry exists, and the past‐the‐end (`end`) iterator otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/multimap-0ae/iterator.adoc[iterator] xref:bsl/multimap-0ae/find-04c.adoc[find](xref:bsl/multimap-0ae/key_type.adoc[key_type] const& key); ---- [.small]#xref:bsl/multimap-0ae/find-04c.adoc[_» more..._]# Return an iterator providing non‐modifiable access to the first `value_type` object having the specified `key` in the ordered sequence maintained by this multimap, if such an object exists, and the past‐the‐end (`end`) iterator otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/multimap-0ae/const_iterator.adoc[const_iterator] xref:bsl/multimap-0ae/find-041.adoc[find](xref:bsl/multimap-0ae/key_type.adoc[key_type] const& key) const; ---- [.small]#xref:bsl/multimap-0ae/find-041.adoc[_» more..._]# Return an iterator providing modifiable access to the first `value_type` object in this multimap whose key is equivalent to the specified `key`, if such an entry exists, and the past‐the‐end (`end`) iterator otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class LOOKUP_KEY> xref:bsl/multimap-0ae/iterator.adoc[iterator] xref:bsl/multimap-0ae/find-05.adoc[find](LOOKUP_KEY const& key) requires BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR, LOOKUP_KEY>::value; ---- [.small]#xref:bsl/multimap-0ae/find-05.adoc[_» more..._]# Return an iterator providing non‐modifiable access to the first `value_type` object having the specified `key` in the ordered sequence maintained by this multimap, if such an object exists, and the past‐the‐end (`end`) iterator otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class LOOKUP_KEY> xref:bsl/multimap-0ae/const_iterator.adoc[const_iterator] xref:bsl/multimap-0ae/find-00.adoc[find](LOOKUP_KEY const& key) const requires BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR, LOOKUP_KEY>::value; ---- [.small]#xref:bsl/multimap-0ae/find-00.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#