Searched refs:DifferenceType (Results 1 – 1 of 1) sorted by relevance
216 typedef difference_type DifferenceType; typedef253 Iterator operator+(DifferenceType n) const { return Iterator(ptr_+n); }254 Iterator operator-(DifferenceType n) const { return Iterator(ptr_-n); }256 Iterator& operator+=(DifferenceType n) { ptr_+=n; return *this; }257 Iterator& operator-=(DifferenceType n) { ptr_-=n; return *this; }278 Reference operator[](DifferenceType n) const { return ptr_[n]; }282 DifferenceType operator-(ConstIterator that) const { return ptr_-that.ptr_; }