Remove the element pointed by some iterator This method returns an iterator pointing to the element after the one that has been removed
| 414 | /// This method returns an iterator pointing to the |
| 415 | /// element after the one that has been removed |
| 416 | Iterator remove(const Iterator& it) { |
| 417 | |
| 418 | return remove(*it); |
| 419 | } |
| 420 | |
| 421 | /// Remove the element from the set with a given value |
| 422 | /// This method returns an iterator pointing to the |