[#bsl-map-0af-find-0b] = xref:bsl.adoc[bsl]::xref:bsl/map-0af.adoc[map<TimeInterval, Node*>]::find :relfileprefix: ../../ :mrdocs: `find` overloads == Synopses Declared in `<bslstl_map.h>` Return an iterator providing modifiable access to the `value_type` object in this map whose key is equivalent to the specified `key`, if such an entry exists, and the past‐the‐end (`end`) iterator otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/map-0af/iterator.adoc[iterator] xref:bsl/map-0af/find-0f.adoc[find](xref:bsl/map-0af/key_type.adoc[key_type] const& key); ---- [.small]#xref:bsl/map-0af/find-0f.adoc[_» more..._]# Return an iterator providing non‐modifiable access to the `value_type` object in this map whose key is equivalent to the specified `key`, if such an entry exists, and the past‐the‐end (`end`) iterator otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/map-0af/const_iterator.adoc[const_iterator] xref:bsl/map-0af/find-01.adoc[find](xref:bsl/map-0af/key_type.adoc[key_type] const& key) const; ---- [.small]#xref:bsl/map-0af/find-01.adoc[_» more..._]# Return an iterator providing modifiable access to the `value_type` object in this map whose key is equivalent to the specified `key`, if such an entry exists, and the past‐the‐end (`end`) iterator otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class LOOKUP_KEY> xref:bsl/map-0af/iterator.adoc[iterator] xref:bsl/map-0af/find-09.adoc[find](LOOKUP_KEY const& key) requires BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR, LOOKUP_KEY>::value; ---- [.small]#xref:bsl/map-0af/find-09.adoc[_» more..._]# Return an iterator providing non‐modifiable access to the `value_type` object in this map whose key is equivalent to the specified `key`, if such an entry exists, and the past‐the‐end (`end`) iterator otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class LOOKUP_KEY> xref:bsl/map-0af/const_iterator.adoc[const_iterator] xref:bsl/map-0af/find-0a.adoc[find](LOOKUP_KEY const& key) const requires BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR, LOOKUP_KEY>::value; ---- [.small]#xref:bsl/map-0af/find-0a.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#