[#bsl-multiset-03-find-06] = xref:bsl.adoc[bsl]::xref:bsl/multiset-03.adoc[multiset]::find :relfileprefix: ../../ :mrdocs: Return a const iterator to the first element equivalent to `key`. == Synopsis Declared in `<bslstl_multiset.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/multiset-03/const_iterator.adoc[const_iterator] find(xref:bsl/multiset-03/key_type.adoc[key_type] const& key) const; ---- == Description Return an iterator providing non‐modifiable access to the first `value_type` object that is equivalent to the specified `key` in ordered sequence maintained by this multiset, if such an object exists, and the past‐the‐end (`end`) iterator otherwise. Note: implemented inline due to Sun CC compilation error. == Return Value const iterator to a matching element, or `end()` == Parameters [cols="1,4"] |=== | Name| Description | *key* | key value to look up |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#