[#indirectmap-lower_bound-0b] = xref:indirectmap.adoc[indirectmap]::lower_bound :relfileprefix: ../ :mrdocs: Find the first entry whose key is not ordered before the given value. == Synopses Declared in `<indirectmap.h>` Find the first entry whose key is not ordered before the given value. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:indirectmap/iterator.adoc[iterator] xref:indirectmap/lower_bound-05.adoc[lower_bound](K const& key); ---- [.small]#xref:indirectmap/lower_bound-05.adoc[_» more..._]# Find the first entry whose key is not ordered before the given value. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:indirectmap/const_iterator.adoc[const_iterator] xref:indirectmap/lower_bound-01.adoc[lower_bound](K const& key) const; ---- [.small]#xref:indirectmap/lower_bound-01.adoc[_» more..._]# == Return Value * An iterator to the first such entry, or end() if none. * A const iterator to the first such entry, or end() if none. == Parameters [cols="1,4"] |=== | Name| Description | *key* | The value whose address is used as the lookup key. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#