at overloads
Declared in <bslstl_map.h>
Return a modifiable reference to the mapped value for key.
add_lvalue_reference<VALUE>::type
at(key_type const& key);
» more...
Return a const reference to the mapped value for key.
add_lvalue_reference<VALUE const>::type
at(key_type const& key) const;
» more...
Return a modifiable reference to the mapped value for key.
template<class LOOKUP_KEY>
add_lvalue_reference<VALUE>::type
at(LOOKUP_KEY const& key)
requires BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR,
LOOKUP_KEY>::value;
» more...
Return a const reference to the mapped value for key.
template<class LOOKUP_KEY>
add_lvalue_reference<VALUE const>::type
at(LOOKUP_KEY const& key) const
requires BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR,
LOOKUP_KEY>::value;
» more...
| Name | Description |
|---|---|
| key | key whose mapped value is accessed |