[#bsl-unordered_multimap-0b0-find-00] = xref:bsl.adoc[bsl]::xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap]::find :relfileprefix: ../../ :mrdocs: `find` overloads == Synopses Declared in `<bslstl_unorderedmultimap.h>` Return an iterator providing modifiable access to the first `value_type` object in the sequence of all the `value_type` objects of this unordered multimap with a key equivalent to the specified `key`, if such entries exist, and the past‐the‐end (`end`) iterator otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/unordered_multimap-0b0/iterator.adoc[unordered_multimap<KEY, VALUE, HASH, EQUAL, ALLOCATOR>::iterator] xref:bsl/unordered_multimap-0b0/find-0c.adoc[find](xref:bsl/unordered_multimap-0b0/key_type.adoc[key_type] const& key); ---- [.small]#xref:bsl/unordered_multimap-0b0/find-0c.adoc[_» more..._]# Return an iterator providing non‐modifiable access to the first `value_type` object in the sequence of `value_type` objects of this unordered multimap with a key equivalent to the specified `key`, if such entries exist, and the past‐the‐end (`end`) iterator otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/unordered_multimap-0b0/const_iterator.adoc[unordered_multimap<KEY, VALUE, HASH, EQUAL, ALLOCATOR>::const_iterator] xref:bsl/unordered_multimap-0b0/find-06.adoc[find](xref:bsl/unordered_multimap-0b0/key_type.adoc[key_type] const& key) const; ---- [.small]#xref:bsl/unordered_multimap-0b0/find-06.adoc[_» more..._]# Return an iterator providing modifiable access to the first `value_type` object in the sequence of all the `value_type` objects of this unordered multimap with a key equivalent to the specified `key`, if such entries exist, and the past‐the‐end (`end`) iterator otherwise. The behavior is undefined unless `key` is equivalent to the key of the elements of at most one equivalent‐key group in this unordered multimap. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class LOOKUP_KEY> xref:bsl/unordered_multimap-0b0/iterator.adoc[iterator] xref:bsl/unordered_multimap-0b0/find-0b.adoc[find](LOOKUP_KEY const& key) requires BloombergLP::bslmf::IsTransparentPredicate<HASH, LOOKUP_KEY>::value && BloombergLP::bslmf::IsTransparentPredicate<EQUAL,LOOKUP_KEY>::value; ---- [.small]#xref:bsl/unordered_multimap-0b0/find-0b.adoc[_» more..._]# Return an iterator providing modifiable access to the first `value_type` object in this unordered multimap whose key is equivalent to the specified `key`, if such an entry exists, and the past‐the‐end (`end`) iterator otherwise. The behavior is undefined unless `key` is equivalent to the key of the elements of at most one equivalent‐key group in this unordered multimap. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class LOOKUP_KEY> xref:bsl/unordered_multimap-0b0/const_iterator.adoc[const_iterator] xref:bsl/unordered_multimap-0b0/find-0a.adoc[find](LOOKUP_KEY const& key) const requires BloombergLP::bslmf::IsTransparentPredicate<HASH, LOOKUP_KEY>::value && BloombergLP::bslmf::IsTransparentPredicate<EQUAL,LOOKUP_KEY>::value; ---- [.small]#xref:bsl/unordered_multimap-0b0/find-0a.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#