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
Vastly improved performance. Runtime is ~3x faster and uses 25x less memory.
The signalling of parsing success and failure is done through multiple return
values, not structs. The fundamental signature of parser functions is thus now offset -> (value, offset).
Contextual information when parsing fails is more accurate.
anybut -> any-but
Removed
The explicit parser, failure, and input types. This is now managed by
multiple return values, as described above.