1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
use std::cmp;
#[derive(Clone, Copy, Debug, Default, Eq, Hash, PartialEq)]
pub struct StringRange {
start: usize,
end: usize,
}
impl StringRange {
pub fn new(start: usize, end: usize) -> Self {
Self { start, end }
}
pub fn at(pos: usize) -> Self {
Self::new(pos, pos)
}
pub fn between(start: usize, end: usize) -> Self {
Self::new(start, end)
}
pub fn encompassing(a: &Self, b: &Self) -> Self {
Self::new(cmp::min(a.start, b.start), cmp::max(a.end, b.end))
}
pub fn start(&self) -> usize {
self.start
}
pub fn end(&self) -> usize {
self.end
}
pub fn get<'a>(&self, reader: &'a str) -> &'a str {
&reader[self.start..self.end]
}
pub fn is_empty(&self) -> bool {
self.start == self.end
}
pub fn length(&self) -> usize {
self.end - self.start
}
}
|