| 33 | return other.idx_ - idx_; |
| 34 | } |
| 35 | bool equal(const iterator_over& other) const noexcept { |
| 36 | return &axis_ == &other.axis_ && idx_ == other.idx_; |
| 37 | } |
| 38 | typename Axis::bin_type dereference() const { return axis_[idx_]; } |
| 39 | friend class ::boost::iterator_core_access; |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected