Replies: 1 comment 3 replies
-
Given that |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a large list of keywords that I was hoping to represent as an enum called
Keyword
. To reduce error-prone string duplication, each value can generate its own parser and I can iterate over the values to generate all the parsers I need. How would I collect the parser iterator into a single parser?My current attempt:
Beta Was this translation helpful? Give feedback.
All reactions