| 62 | return other.idx_ - idx_; |
| 63 | } |
| 64 | bool equal(const reverse_iterator_over& other) const noexcept { |
| 65 | return &axis_ == &other.axis_ && idx_ == other.idx_; |
| 66 | } |
| 67 | typename Axis::bin_type dereference() const { return axis_[idx_ - 1]; } |
| 68 | friend class ::boost::iterator_core_access; |
| 69 |
nothing calls this directly
no outgoing calls
no test coverage detected