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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
use crateCtor;
use crateHandler;
use crateContext;
use crateMatch;
use cratenew_span_inc;
use cratedebug_regex_beg;
use cratedebug_regex_reval;
use crateError;
use crateRegex;
use crateimpl_not_for_regex;
use crateSpan;
///
/// Consumes a fixed number of elements without content validation.
///
/// `Consume` is a low-level combinator that advances the parser by a specified number of elements
/// regardless of their content. It succeeds if sufficient input remains, failing otherwise. This
/// combinator is useful for skipping fixed-size fields or reserved space where content validation
/// is unnecessary, deferred, or handled separately.
///
/// # Regex
///
/// - **Success**: When remaining input length >= specified count
/// - Returns span covering exactly `count` elements
/// - Consumes exactly `count` elements from input stream
/// - **Failure**: When insufficient input remains
/// - Returns [`Error::Consume`]
///
/// # Ctor
///
/// Uses identical matching logic as regex mode, then constructs a value from the result.
///
/// # Example
///
/// ```
/// # use neure::prelude::*;
/// #
/// # fn main() -> Result<(), Box<dyn core::error::Error>> {
/// let consume = regex::consume(8);
/// let mut ctx = CharsCtx::new("rust2023");
///
/// assert_eq!(ctx.try_mat(&consume)?, Span::new(0, 8));
/// # Ok(())
/// # }
/// ```
;
impl_not_for_regex!;
///
/// Consumes a fixed number of elements without content validation.
///
/// # Example
///
/// ```
/// # use neure::prelude::*;
/// #
/// # fn main() -> Result<(), Box<dyn core::error::Error>> {
/// let parser = regex::consume(6);
/// let mut ctx = CharsCtx::new("aabbccgg");
///
/// assert_eq!(ctx.try_mat(&parser)?, Span::new(0, 6));
/// # Ok(())
/// # }
/// ```
pub const
///
/// Consumes all remaining elements from current position to end of input.
///
/// `ConsumeAll` is a terminal combinator that matches the entire remaining input stream from the current
/// position to the end. It always succeeds (even with zero remaining elements) and consumes all available
/// data. This combinator is useful for capturing trailing content, implementing greedy captures, or
/// terminating parsers that should process all remaining input.
///
/// # Regex
///
/// - **Always succeeds**:
/// - When input remains: Returns span covering all remaining elements
/// - At end of input: Returns zero-length span at current position
/// - **Consumption**:
/// - Advances parser to end of input (position = input length)
/// - Consumes exactly `remaining_length` elements
/// - Never fails (unlike `Consume` which fails on insufficient input)
///
/// # Ctor
///
/// Uses identical matching logic as regex mode, then constructs a value from the result.
///
/// # Example
/// ```
/// # use neure::prelude::*;
/// #
/// # fn main() -> Result<(), Box<dyn core::error::Error>> {
/// let parser = regex::consume_all();
/// let mut ctx = BytesCtx::new(b"rust is so awesome!");
///
/// assert_eq!(ctx.try_mat(&parser)?, Span::new(0, 19));
/// # Ok(())
/// # }
/// ```
;
impl_not_for_regex!;
///
/// Consumes all remaining elements from current position to end of input.
///
/// # Example
///
/// ```
/// # use neure::prelude::*;
/// #
/// # fn main() -> Result<(), Box<dyn core::error::Error>> {
/// let parser = regex::consume_all();
/// let mut ctx = CharsCtx::new("aabbccgg");
///
/// assert_eq!(ctx.try_mat(&parser)?, Span::new(0, 8));
/// # Ok(())
/// # }
/// ```
pub const