[#bsl-multimap-0ae-lower_bound-0c] = xref:bsl.adoc[bsl]::xref:bsl/multimap-0ae.adoc[multimap]::lower_bound :relfileprefix: ../../ :mrdocs: Return an iterator providing non‐modifiable access to the first (i.e., ordered least) `value_type` object in this multimap whose key is greater‐than or equal‐to the specified `key`, and the past‐the‐end iterator if this multimap does not contain a `value_type` object whose key is greater‐than or equal‐to `key`. Note that this function returns the _first_ position before which a `value_type` object having an equivalent key could be inserted into the ordered sequence maintained by this multimap, while preserving its ordering. == Synopsis Declared in `<bslstl_multimap.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/multimap-0ae/const_iterator.adoc[const_iterator] lower_bound(xref:bsl/multimap-0ae/key_type.adoc[key_type] const& key) const; ---- == Description Note: implemented inline due to Sun CC compilation error. [.small]#Created with https://www.mrdocs.com[MrDocs]#