\brief Create an iterator from a logical position and its pre-computed physical offset into the run ends array \param logical_pos is an index in the [0, length()] range \param physical_offset the pre-calculated PhysicalIndex(logical_pos)
| 364 | /// \param logical_pos is an index in the [0, length()] range |
| 365 | /// \param physical_offset the pre-calculated PhysicalIndex(logical_pos) |
| 366 | Iterator iterator(int64_t logical_pos, int64_t physical_offset) const { |
| 367 | return Iterator{PrivateTag{}, *this, logical_pos, physical_offset}; |
| 368 | } |
| 369 | |
| 370 | /// \brief Create an iterator from a logical position |
| 371 | /// |
no test coverage detected