4个稳定版本
1.0.3 | 2024年4月9日 |
---|---|
1.0.1 | 2024年4月8日 |
#8 in #locations
90 每月下载量
在 4 个crate中使用(通过 as3_parser)
15KB
296 行
源文本
一个用于存储从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));