Home | History | Annotate | Download | only in support

Lines Matching defs:difference_type

24     typedef typename std::iterator_traits<It>::difference_type difference_type;
51 typedef typename std::iterator_traits<It>::difference_type difference_type;
100 typedef typename std::iterator_traits<It>::difference_type difference_type;
149 typedef typename std::iterator_traits<It>::difference_type difference_type;
197 typedef typename std::iterator_traits<It>::difference_type difference_type;
219 random_access_iterator& operator+=(difference_type n) {it_ += n; return *this;}
220 random_access_iterator operator+(difference_type n) const
222 friend random_access_iterator operator+(difference_type n, random_access_iterator x)
224 random_access_iterator& operator-=(difference_type n) {return *this += -n;}
225 random_access_iterator operator-(difference_type n) const
228 reference operator[](difference_type n) const {return it_[n];}
281 typename std::iterator_traits<T>::difference_type