\brief Return the initial logical position of the run If is_end(), this is the same as length().
| 482 | /// |
| 483 | /// If is_end(), this is the same as length(). |
| 484 | int64_t logical_position() const { return logical_pos_; } |
| 485 | |
| 486 | /// \brief Whether the iterator is at logical position 0. |
| 487 | bool is_begin() const { return logical_pos_ == 0; } |
no outgoing calls