In the STL almost all containers have an erase function. The question I have is in a vector, the erase function returns an iterator pointing to the next element in the vector. The map container does not do this. Instead it returns a void. Anyone know why there is this inconsistancy?
|
|
See http://www.sgi.com/tech/stl/Map.html
The reason for returning an iterator on erase is so that you can iterate over the list erasing elements as you go. If erasing an item doesn't invalidate existing iterators there is no need to do this. |
||
|
|
|
|
||
|
|
|
|
Just as an aside, the STL shipped with MS Visual Studio C++ (Dinkumware IIRC) provides a map implementation with an They do note it's not standards conforming. |
||
|
|
|
|
The inconsistency is due to use. All in all, there simply is no cheap way of returning the “next” element after erasing. For sequences, there is a way. Additionally, Rob is right. There's no need for the Map to return an iterator. |
||
|
|
|
|
I have no idea if this is the answer, but one reason might be with the cost of locating the next element. Iterating through a map is inherently "slow". |
||
|
|
