Proposed Resolution:
Add the following functions to the definition of unordered_map under
"lookup" (23.4.1):
mapped_type& at(const key_type& k);
const mapped_type &at(const key_type &k) const;
Add the following definitions to 23.4.1.2:
mapped_type& at(const key_type& k);
const mapped_type &at(const key_type &k) const;
Returns: A reference to x.second, where x is the (unique) element
whose key is equivalent to k.
Throws : An exception object of type out_of_range if no such element
is present.
Joe Gottman
---
[ comp.std.c++ is moderated. To submit articles, try just posting with ]
[ your news-reader. If that fails, use mailto:std...@ncar.ucar.edu ]
[ --- Please see the FAQ before posting. --- ]
[ FAQ: http://www.comeaucomputing.com/csc/faq.html ]