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
202
203
204
205
206
207
208
209
210
211
212
213
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;
///
/// Matches the absolute start of input (position zero).
///
/// [`AnchorStart`] is a zero-width assertion that succeeds only at the very beginning of the input stream,
/// analogous to the `^` anchor in regular expressions but without multi-line support. It consumes no input
/// on success and serves as a positional constraint rather than a content matcher.
///
/// # Regex
///
/// - **Success**: At position zero (offset 0)
/// - Returns zero-length span at start position
/// - Does not consume any input
/// - **Failure**: At any position greater than zero
/// - Returns [`Error::AnchorStart`]
///
/// # Ctor
///
/// Uses identical matching logic as regex mode, then constructs a value from the result.
/// The constructed value typically represents a positional marker rather than content.
///
/// # Example
/// ```
/// # use neure::prelude::*;
/// #
/// # fn main() -> Result<(), Box<dyn core::error::Error>> {
/// let anchor = regex::start();
/// let mut ctx = CharsCtx::new("aabbccgg");
///
/// assert_eq!(ctx.try_mat(&anchor)?, Span::new(0, 0));
/// # Ok(())
/// # }
/// ```
;
impl_not_for_regex!;
///
/// Matches the absolute start of input (position zero).
///
/// # Example
///
/// ```
/// # use neure::prelude::*;
/// #
/// # fn main() -> color_eyre::Result<()> {
/// # color_eyre::install()?;
/// let pos = regex::start();
/// let rust = regex::literal("rust");
/// let year = neu::digit(10).count::<4>();
/// let mut ctx = CharsCtx::new("rust2023");
///
/// assert_eq!(ctx.try_mat(&pos)?, Span::new(0, 0));
/// assert_eq!(ctx.try_mat(&rust)?, Span::new(0, 4));
/// assert_eq!(ctx.try_mat(&year)?, Span::new(4, 4));
///
/// Ok(())
/// # }
/// ```
pub const
///
/// Matches the absolute end of input (position equal to input length).
///
/// [`AnchorEnd`] is a zero-width assertion that succeeds only at the very end of the input stream,
/// analogous to the `$` anchor in regular expressions but without multi-line support. It consumes no input
/// on success and serves as a positional constraint rather than a content matcher.
///
/// # Regex
///
/// - **Success**: At position equal to input length
/// - Returns zero-length span at end position
/// - Does not consume any input
/// - **Failure**: At any position before the end
/// - Returns [`Error::AnchorEnd`]
///
/// # Ctor
///
/// Uses identical matching logic as regex mode, then constructs a value from the result.
/// The constructed value typically represents a positional marker rather than content.
///
/// # Example
/// ```
/// # use neure::prelude::*;
/// #
/// # fn main() -> Result<(), Box<dyn core::error::Error>> {
/// let anchor = regex::end();
/// let mut ctx = CharsCtx::new("aabbccgg");
///
/// assert_eq!(ctx.try_mat(®ex::consume(8))?, Span::new(0, 8));
/// assert_eq!(ctx.try_mat(&anchor)?, Span::new(8, 0));
/// # Ok(())
/// # }
/// ```
;
impl_not_for_regex!;
///
/// Matches the absolute end of input (position equal to input length).
///
/// # Example
///
/// ```
/// # use neure::prelude::*;
/// #
/// # fn main() -> color_eyre::Result<()> {
/// # color_eyre::install()?;
/// let rust = regex::literal("rust");
/// let year = neu::digit(10).count::<4>();
/// let end = regex::end();
/// let mut ctx = CharsCtx::new("rust2023");
///
/// assert_eq!(ctx.try_mat(&rust)?, Span::new(0, 4));
/// assert_eq!(ctx.try_mat(&year)?, Span::new(4, 4));
/// assert_eq!(ctx.try_mat(&end)?, Span::new(8, 0));
///
/// Ok(())
/// # }
/// ```
pub const