[#bsl-unordered_multiset-06c-find-0c] = xref:bsl.adoc[bsl]::xref:bsl/unordered_multiset-06c.adoc[unordered_multiset]::find :relfileprefix: ../../ :mrdocs: `find` overloads == Synopses Declared in `<bslstl_unorderedmultiset.h>` Return an iterator providing modifiable access to the first `value_type` object in the sequence of all the value elements of this unordered multiset 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_multiset-06c/iterator.adoc[unordered_multiset<KEY, HASH, EQUAL, ALLOCATOR>::iterator] xref:bsl/unordered_multiset-06c/find-0b.adoc[find](xref:bsl/unordered_multiset-06c/key_type.adoc[key_type] const& key); ---- [.small]#xref:bsl/unordered_multiset-06c/find-0b.adoc[_» more..._]# Return an iterator providing non‐modifiable access to the first `value_type` object in the sequence of all the value elements of this unordered multiset 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_multiset-06c/const_iterator.adoc[unordered_multiset<KEY, HASH, EQUAL, ALLOCATOR>::const_iterator] xref:bsl/unordered_multiset-06c/find-02.adoc[find](xref:bsl/unordered_multiset-06c/key_type.adoc[key_type] const& key) const; ---- [.small]#xref:bsl/unordered_multiset-06c/find-02.adoc[_» more..._]# Return an iterator providing modifiable access to the first `value_type` object in the sequence of all the value elements of this unordered multiset 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 elements of at most one equivalent‐key group in this unordered multiset. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class LOOKUP_KEY> xref:bsl/unordered_multiset-06c/iterator.adoc[iterator] xref:bsl/unordered_multiset-06c/find-00.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_multiset-06c/find-00.adoc[_» more..._]# Return an iterator providing non‐modifiable access to the first `value_type` object in the sequence of all the value elements of this unordered multiset 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 elements of at most one equivalent‐key group in this unordered multiset. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class LOOKUP_KEY> xref:bsl/unordered_multiset-06c/const_iterator.adoc[const_iterator] xref:bsl/unordered_multiset-06c/find-0f.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_multiset-06c/find-0f.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#