Calls [`RunEndBuffer::get_physical_index`]. The result is arbitrary if `logical_index >= self.len()`
(&self, logical_index: usize)
| 317 | /// |
| 318 | /// The result is arbitrary if `logical_index >= self.len()` |
| 319 | pub fn get_physical_index(&self, logical_index: usize) -> usize { |
| 320 | self.run_ends.get_physical_index(logical_index) |
| 321 | } |
| 322 | |
| 323 | /// Returns the physical indices corresponding to the provided logical indices. |
| 324 | /// |
no outgoing calls