Remove the element pointed by some iterator This method returns an iterator pointing to the element after the one that has been removed
| 426 | /// This method returns an iterator pointing to the element after |
| 427 | /// the one that has been removed |
| 428 | Iterator remove(const Iterator& it) { |
| 429 | |
| 430 | const K& key = it->first; |
| 431 | return remove(key); |
| 432 | } |
| 433 | |
| 434 | /// Remove the element from the map with a given key |
| 435 | /// This method returns an iterator pointing to the element after |