You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
is the docstring for both. Is this the high-level switch between streaming and complete parsers, or should this be done some other way? Should I use parse_complete everywhere if I want a complete parser, or is it enough to use it once? I am not really sure how that fits together.
The text was updated successfully, but these errors were encountered:
thank you for the report, I'll update the docs. If you are using the function based parsers, use parse_complete where you want the complete parser. If the entire parser stack has migrated to the new combinators returning impl Parser, then you only need to call it once
is the docstring for both. Is this the high-level switch between streaming and complete parsers, or should this be done some other way? Should I use parse_complete everywhere if I want a complete parser, or is it enough to use it once? I am not really sure how that fits together.
The text was updated successfully, but these errors were encountered: