JsonGrammar
JsonGrammar copied to clipboard
Combinators for bidirectional JSON parsing
Results
3
JsonGrammar issues
Sort by
recently updated
recently updated
newest added
For optionally matching properties in objects: ``` haskell optionalProp :: Json a => String -> Iso (Object :- t) (Object :- Maybe a :- t) optionalProp name = duck just...
The grammars contain information that could be used to generate specialized parsers that need fewer branches. Would this improve their performance?