Chapter Index | Slide Index | Frames [ Windows ] | Narrative On | <- prev | next -> |

Forward Iterator Interface

  • Proper Type
  • Operations:
  • bool      operator == (const Iterator& I2);
    bool      operator != (const Iterator& I2);
    Iterator& operator = (const Iterator&);
    const T&  operator *() const;
    T&        operator *();
    Iterator& operator ++();
    Iterator  operator ++(int);
    

<- prev | next -> | Top of Page | 1. Positional Containers - 7 of 23