package jsonxt

  1. Overview
  2. Docs

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

module type IO = sig ... end
module Make (IO : IO) : sig ... end

The Make functor is used to create a module with reader and writer functions using the IO monad.