1 2 3 4 5 6 7 8 9 10 11 12 13
/// Generates `c` `count` times. pub fn char_count(c: char, count: usize) -> String { std::iter::repeat_n(c, count).collect() } /// Generates the file and token string. /// /// ```text /// the/file/name.ext [line=8, position=5] /// ``` pub fn file_and_token(file_name: &str, line: usize, position: usize) -> String { format!(" {file_name} [line={line}, position={position}]") }