 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
uli Guest
|
Posted: Sun Oct 08, 2006 6:41 am Post subject: unordered_map and const_iterator insert(... |
|
|
hello
unordered_map provides
iterator insert(iterator hint, const value_type& obj)
AND
const_iterator insert(const_iterator hint, const value_type& obj)
which is reasonable. Changing a container is not the same as changing
an element.
However, map provides only
iterator insert(iterator hint, const value_type& obj), i.e.
it does NOT provide the const_iterator variant.
(The same problem ist with erase(...)).
Is there a reason, why std::map does not provide the const_iterator
variants?
Uli
---
[ comp.std.c++ is moderated. To submit articles, try just posting with ]
[ your news-reader. If that fails, use mailto:std-c++@ncar.ucar.edu ]
[ --- Please see the FAQ before posting. --- ]
[ FAQ: http://www.comeaucomputing.com/csc/faq.html ] |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|