package jsonxt
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=71eb44d6e6deefa4b3ba7595d22f8e684ffb686c6a306679489c4e09779ee96b
sha512=4ca7c252d8cd3d3eb39f8094d16c7e1b14968ab61b314c1937248209785bedf434c2b422eb5961d896a41cd70565f9675f11f26b2ccc4e1e34c30260eed5d97b
doc/jsonxt/Jsonxt/index.html
Module JsonxtSource
JSON parsers for files, strings and more
Jsonxt provides a number JSON parsers and writers with a focus on performance for the core file and string functions
Parsers
Jsonxt provides a number of different JSON parsers supporting various access methods and levels of compliance with the JSON standard. Access methods include
- File and string parsing including
Stream.tsupport - A stream parser, that delivers a stream of json tokens rather than a whole json tree, with
Stream.tsupport. - a monadic parser
JSON compliance has a number of levels
- Extended supports floats and integers as well as tuples and variants from Yojson
- Basic supports floats and integers
- Strict only supports floats with integers converted to floats
In addition Yojson compatability modules supports basic Yojson functions including inter-operability with ppx_deriving_yojson and ppx_yojson_conv
Writers
Jsonxt supports writers for each of the access methods and compliance levels including compact and human readable versions. This includes
- File, string and channel output
- Stream writer for a json token stream such as produced by the stream parser
- A monadic writer
Modules
Json stream types for the various compliance levels
Basic supports parsing and writing JSON data that conforms to the Json.Basic.json json type. This includes support for integers which are not part of the JSON standard
Basic_stream supports parsing and writing JSON data that conforms to the Json_stream.Basic.json type as a stream of Json_stream.Basic.json objects. This includes support for integers which are not part of the JSON standard
Basic_monad supports parsing and writing JSON data that conforms to the Json.Basic.json json type using reader and writer funtions that implement the IO monad. Support for integers, which are not part of the JSON standard, is included
Extended supports parsing and writing JSON data that conforms to the Json.Extended.json json type. This supports non-standard JSON types including integer as well as tuples and variants introduced by Yojson.
Extended_stream supports parsing and writing JSON data that conforms to the Json_stream.Extended.json type as a stream of Json_stream.Extended.json objects. This supports non-standard JSON types including integer as well as tuples and variants introduced by Yojson
Extended_monad supports parsing and writing JSON data that conforms to the Json.Extended.json json type using reader and writer funtions that implement the IO monad. This supports non-standard JSON types including integer as well as tuples and variants introduced by Yojson
Strict supports parsing and writing JSON data that conforms to the Json.Strict.json json type. This only supports types supported by the JSON standard and explicity excludes integers. However, when encoded in floats integers in the range (+/-)2^53 have no loss of precision
Strict_stream supports parsing and writing JSON data that conforms to the Json_stream.Strict.json type as a stream of Json_stream.Strict.json objects. This only supports types supported by the JSON standard and explicity excludes integers
Strict_monad supports parsing and writing JSON data that conforms to the Json.Strict.json json type using reader and writer funtions that implement the IO monad. This only supports types supported by the JSON standard and explicity excludes integers
Parsing error handling