Gets and iterator over buffer chars.
(&self)
| 45 | |
| 46 | /// Gets and iterator over buffer chars. |
| 47 | pub fn chars(&self) -> Chars<'_> { |
| 48 | self.line.chars() |
| 49 | } |
| 50 | |
| 51 | /// Returns the end of the string starting at `start_pos`, or an empty string if `start_pos` is |
| 52 | /// after the string's end. |
no outgoing calls