Generalities
- The iterators make the interface between the containers and the algorithms
- There are various way to iterate throw the containers
- In order to be able to use the C++ standard library algorithms, we use as much as possible the classic RandomAccessIterator to iterate throw the proposed containers
- In addition to this classical "monodimensional" iterator, we have defined specific way to iteratate multi-dimensionnal containers
The various way to iterate through a container