i would like to improve my c++ code style so i decided that i definitively have to deep into stl...at first, as i need it in a real case, i woudl like to know if it is available some kind of container that hold a current index inside...
for example i mean some container class i can navigate with next()/prev() but i can also ask for get() to retrieve the current one , without the need to store the current index/pointer in my own class member
(already taken a look at stl vector/deque , hopefully i didn't read doc carefully)