10 typedef typename Itor::value_type value_type;
11 typedef typename Itor::difference_type difference_type;
12 typedef typename Itor::pointer pointer;
13 typedef typename Itor::reference reference;
19 typename iterator_traits<Itor>::difference_type distance(Itor it1, Itor it2)
21 typename iterator_traits<Itor>::difference_type d = 0;
23 while (it1 not_eq it2)
36 # endif // AHITERATOR_H
Definition: ahIterator.H:8