Function line_span::find_next_line_start[][src]

pub fn find_next_line_start(text: &str, index: usize) -> Option<usize>
Expand description

Find the start (byte index) of the next line, the line after the one which index is within.

Returns None if there is no next line.

See also

Panics

Panics if index is out of bounds.

Example

let text = "foo\nbar\nbaz";
let i = 1; // 'o'

let start = line_span::find_next_line_start(text, i).unwrap();

assert_eq!(start, 4);
assert_eq!(&text[start..], "bar\nbaz");