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
Earlier versions of the parser supported streaming input which was dropped in favor of using strings directly to maximize performance. We should keep the direct string parsing for use cases where high performance is needed but could also reintroduce support for streaming input:
Parsing input to be a ZStream of characters
Syntax converted to sink/pipeline to inject parsing and printing into streams
Reintroduce the cut operator and the maxDistance modifier to control memory buffering required for backtracking on streams
The text was updated successfully, but these errors were encountered:
Earlier versions of the parser supported streaming input which was dropped in favor of using strings directly to maximize performance. We should keep the direct string parsing for use cases where high performance is needed but could also reintroduce support for streaming input:
ZStream
of characterscut
operator and themaxDistance
modifier to control memory buffering required for backtracking on streamsThe text was updated successfully, but these errors were encountered: