1 个稳定版本
1.0.0 | 2024年7月23日 |
---|
#7 在 #locations
192 每月下载量
在 6 个crate中使用 (2 个直接使用)
15KB
298 行
源文本
一个用于存储从 std::string::String
中获取的行偏移和列的库。它在第一次调用任何检索方法时只处理行一次。
示例
以下是一个基本示例
// offset 5 = "bar"
let text = SourceText::new("foo\r\nbar\r\nqux".into());
assert_eq!(0, text.get_column(5));
assert_eq!(2, text.get_line_number(5));
assert_eq!(5, text.get_line_offset(2).unwrap());
assert_eq!(5, text.get_line_offset_from_offset(7));