- Add
erase_fast(iterator pos)
method which in contrast toerase(iterator pos)
doesn't return an iterator, avoiding the cost of looking for the next element after erasure of the element atiterator pos
.
erase_fast(iterator pos)
method which in contrast to erase(iterator pos)
doesn't return an iterator, avoiding the cost of looking for the next element after erasure of the element at iterator pos
.