28 Sep
2014
28 Sep
'14
2:03 p.m.
28.09.2014, 19:06, "Joaquin M Lopez Munoz"
Aaron Levy
writes: If I erase elements in a multi_index_container, how are iterators invalidated? 1. For other than random_access index, only iterators to the deleted element? 2. For random_access index, potentially any iterator? ...
For all indices, on every ocassion, only the iterators to the deleted element are invalidated.
What are the data structures used internally for this container and its indexes.
* random-access indices use this:
Aah! Random access and stable, I should have guessed stable_vectors. And the pointers to the implementation are impressive. Thanks.