Skip to content
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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

yarrumretep
Copy link

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...?

@yarrumretep
Copy link
Author

Added also a not() version of peek that operates the same, but returns the inverse err/ok values.

Copy link
Owner

@Hejsil Hejsil left a 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);
}

Copy link
Owner

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 :)

Comment on lines +387 to +393
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"));
}
Copy link
Owner

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants