Hello all,
I need to shrink this container like a stack ( FIFO ).
So I thought about queues or stacks which have a member function pop().
Wonderfull, because with "vectorstd" I have erase( position ), but with
queued or stacked vectors I have pop() ( simple ).
At the end of operations on its values it will hold exactly 9 ints which are used later in the program.
I like the idea of shrinking it down from the front and from the end leaving only the required values.
But this container is reusable, so I thought of restarting with no values in it.
Maybe I'm pushing the enveloppe because I could do all of this with native arrays, but I want to do away
whit loops and indices.