v1.1.0
Parser
now works withSlice
s of input tokens instead of copyingArray
s all over, improving performance immensely for large input sizes- e.g., running the example JSON parser on
"[#{(1..100_000).to_a.join(", ")}]"
takes <0.5s, while previously it took about 60s
- e.g., running the example JSON parser on