| 354 | int64_t length() const { return length_; } |
| 355 | |
| 356 | int64_t PhysicalIndex(int64_t logical_pos) const { |
| 357 | return internal::FindPhysicalIndex(run_ends_, RunEndsArray(array_span_).length, |
| 358 | logical_pos, offset_); |
| 359 | } |
| 360 | |
| 361 | /// \brief Create an iterator from a logical position and its |
| 362 | /// pre-computed physical offset into the run ends array |
no test coverage detected