Module JSON.Parser

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: October 2024

Summary of exported operations:

parseJSON :: String -> Maybe JValue  Deterministic 
Parses a JSON string into a JValue.

Exported operations:

parseJSON :: String -> Maybe JValue  Deterministic 

Parses a JSON string into a JValue. Returns Nothing if the string could not be parsed.