| 161 | return index() > other.index() ; |
| 162 | } |
| 163 | inline bool operator<=( const iterator& other ) const { |
| 164 | return index() <= other.index() ; |
| 165 | } |
| 166 | inline bool operator>=( const iterator& other ) const { |
| 167 | return index() >= other.index() ; |
| 168 | } |