(&self, char_idx: usize)
| 759 | // ── Helpers ── |
| 760 | |
| 761 | fn char_to_byte(&self, char_idx: usize) -> usize { |
| 762 | self.search_input |
| 763 | .char_indices() |
| 764 | .nth(char_idx) |
| 765 | .map(|(i, _)| i) |
| 766 | .unwrap_or(self.search_input.len()) |
| 767 | } |
| 768 | } |
no test coverage detected