Suppose you have some guarantees about input json (because you produced it yourself or already checked it somehow):
- Only ASCII
- No control characters inside strings
- Whitespace is only spaces or newlines (no tabs or more exotic things)
- No escaped sequences
It would be good to be able to tell aeson to use this knowledge and parse significantly faster.
Suppose you have some guarantees about input json (because you produced it yourself or already checked it somehow):
It would be good to be able to tell aeson to use this knowledge and parse significantly faster.