| | | | | |

Container Support

  • Terminology Support
  •   typedef typename X::ValueType     ValueType;
      ...
      typedef typename I::Iterator      Iterator;
      typedef ConstRAIterator<I>        ConstIterator;
      ...
    
  • Initialization Support
  •   Iterator      Begin();
      ConstIterator Begin() const;
      Iterator      End();
      ConstIterator End() const;
      ...
    

| | Top of Page | 7. Iterators - 7 of 13