1
1
use std:: str:: Chars ;
2
2
3
+ /// Peekable iterator over a char sequence.
4
+ ///
5
+ /// Next characters can be peeked via `nth_char` method,
6
+ /// and position can be shifted forward via `bump` method.
3
7
pub ( crate ) struct Cursor < ' a > {
4
8
initial_len : usize ,
5
9
chars : Chars < ' a > ,
@@ -18,7 +22,9 @@ impl<'a> Cursor<'a> {
18
22
prev : EOF_CHAR ,
19
23
}
20
24
}
25
+
21
26
/// For debug assertions only
27
+ /// Returns the last eaten symbol (or '\0' in release builds).
22
28
pub ( crate ) fn prev ( & self ) -> char {
23
29
#[ cfg( debug_assertions) ]
24
30
{
@@ -30,19 +36,30 @@ impl<'a> Cursor<'a> {
30
36
'\0'
31
37
}
32
38
}
39
+
40
+ /// Returns nth character relative to the current cursor position.
41
+ /// If requested position doesn't exist, `EOF_CHAR` is returned.
42
+ /// However, getting `EOF_CHAR` doesn't always mean actual end of file,
43
+ /// it should be checked with `is_eof` method.
33
44
pub ( crate ) fn nth_char ( & self , n : usize ) -> char {
34
45
self . chars ( ) . nth ( n) . unwrap_or ( EOF_CHAR )
35
46
}
47
+
48
+ /// Checks if there is nothing more to consume.
36
49
pub ( crate ) fn is_eof ( & self ) -> bool {
37
50
self . chars . as_str ( ) . is_empty ( )
38
51
}
52
+
53
+ /// Returns amount of already consumed symbols.
39
54
pub ( crate ) fn len_consumed ( & self ) -> usize {
40
55
self . initial_len - self . chars . as_str ( ) . len ( )
41
56
}
42
- /// Returns an iterator over the remaining characters.
57
+
58
+ /// Returns a `Chars` iterator over the remaining characters.
43
59
fn chars ( & self ) -> Chars < ' a > {
44
60
self . chars . clone ( )
45
61
}
62
+
46
63
/// Moves to the next character.
47
64
pub ( crate ) fn bump ( & mut self ) -> Option < char > {
48
65
let c = self . chars . next ( ) ?;
0 commit comments