Exemplo n.º 1
0
 ArrayIterator begin() {
     return ArrayIterator(*this, 0, length());
 }
Exemplo n.º 2
0
 ArrayIterator end() {
     return ArrayIterator(*this, length(), length());
 }
Exemplo n.º 3
0
const Iterator& ArrayIterator::operator++(int)
{
    _index++;
    return ArrayIterator(_data, _index - 1);
}