This library contains the implementation of a parser for JSON values,
i.e., an operation parseJSON
which reads a textual JSON representation
and returns a Maybe
value of type JValue
.
Author: Jonas Oberschweiber
Version: February 2025
parseJSON
:: String -> Maybe JValue Parses a JSON string into a JValue. |