Women in Technology

Hear us Roar



Article:
  What Is an Iterator in C++, Part 2
Subject:   const_iterator
Date:   2006-04-04 01:26:31
From:   alwyn.schoeman
If my custom iterator were to act like a const_iterator, will it look like this?



class ConstIterator :
public std::iterator<forward_iterator_tag, const T>


?