-
-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add peek functionality? #80
base: master
Are you sure you want to change the base?
Conversation
Added also a not() version of peek that operates the same, but returns the inverse err/ok values. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems useful. Just a few comments
pub fn peek(comptime parser: anytype) Parser(void) { | ||
return _peek(parser, false); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A doc comment for peek
and not
please :)
test "peek" { | ||
const fa = testing.failing_allocator; | ||
const p1 = comptime ascii.range('a', 'z').peek(); | ||
try expectOk(void, 0, {}, try p1.parse(fa, "a")); | ||
try expectOk(void, 0, {}, try p1.parse(fa, "aa")); | ||
try expectErr(void, 0, try p1.parse(fa, "1")); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd like to see a test case for not
as well in case some refactor occurs and not
no longer uses the same logic as peek
Greetings - and thank you for this awesome module! Amazing demonstration of the power of Zig comptime!
I built a "peek" parser that does not consume anything, but checks to see if the nested parser parsed. It returns .ok if the nested parser parses with an index = 0. If the nested parser fails it returns .err with index = 0.
This was useful for parsing an identifier where I needed the first character to be alphabetic and the following characters could be alphanumeric. When I initially built this pattern, using a combine, the resulting type was a {u8, []u8} and required additional handling (e.g. didn't play well with other branches of a oneOf as the other branch returned []u8. Using peek inside the combine I was able to insist on the first character being alpha and yet still easily generate a []u8 return type.
Seems like this could be useful in other circumstances...?