\brief Return the logical position immediately after the run. Pre-condition: !is_end()
| 493 | /// |
| 494 | /// Pre-condition: !is_end() |
| 495 | int64_t run_end() const { |
| 496 | const auto& left_it = std::get<0>(ree_iterators_); |
| 497 | const auto& right_it = std::get<1>(ree_iterators_); |
| 498 | return std::min(left_it.run_end(), right_it.run_end()); |
| 499 | } |
| 500 | |
| 501 | /// \brief returns the logical length of the current run |
| 502 | /// |
no outgoing calls
no test coverage detected