![]() |
![]()
| ![]() |
![]()
NAMEstd::unordered_map::at - std::unordered_map::at Synopsis T& at( const Key& key ); (1) (since C++11)
Parameterskey - the key of the element to find Return valueReference to the mapped value of the requested element Exceptionsstd::out_of_range if the container does not have an element with the specified key ComplexityAverage case: constant, worst case: linear in size. See also operator[] access or insert specified element
|