| 164 | return index() <= other.index() ; |
| 165 | } |
| 166 | inline bool operator>=( const iterator& other ) const { |
| 167 | return index() >= other.index() ; |
| 168 | } |
| 169 | |
| 170 | inline difference_type operator-(const iterator& other) const { |
| 171 | return index() - other.index() ; |