Beispiel #1
0
 ArrayIterator begin() {
     return ArrayIterator(*this, 0, length());
 }
Beispiel #2
0
 ArrayIterator end() {
     return ArrayIterator(*this, length(), length());
 }
const Iterator& ArrayIterator::operator++(int)
{
    _index++;
    return ArrayIterator(_data, _index - 1);
}