bsl::hash_map::find

find overloads

Synopses

Declared in <bslstp_hashmap.h>

Return an iterator to an element with the specified __key, or end.

iterator
find(key_type const& __key);
» more...

Return a const iterator to an element with the specified __key, or end.

const_iterator
find(key_type const& __key) const;
» more...

Return Value

  • iterator to the matching element, or end
  • const iterator to the matching element, or end

Parameters

NameDescription
__keykey to search for