iterator
|
M.insert ( iterator pos, pair<constKey,T> val)
|
| |
Inserts val in the set. The iterator pos is the starting
point of the search. The return value points to the inserted item.
|
|
iterator
|
M.insert ( pair<constKey,T> val)
|
Inserts val in the set. Returns an iterator that points to the
inserted item.
|
|
void
|
M.erase ( iterator pos)
|
Erases the element where pos points to. This erases only one element
|
|
int
|
M.erase ( Key k)
|
Erases all elements that are equal to k. Returns the number
of erased elements.
|