Declarative JSON data manipulation for OCaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocaml-json: add value and codec module placeholders

Add one-line value.ml{i} and codec.ml{i} stubs, matching the shape of
ocaml-toml and ocaml-sexp. These are placeholders for the eventual
split of json.ml's monolithic contents into a value-centric module
(AST + accessors) and a codec-combinator module; for now json.ml
still carries both.

+6 -1
+1
lib/codec.ml
··· 1 + (** Codec combinators for JSON values. See {!Json} for the public API. *)
+1
lib/codec.mli
··· 1 + (** Codec combinators for JSON values. See {!Json} for the public API. *)
+2 -1
lib/dune
··· 1 1 (library 2 2 (name json) 3 3 (public_name json) 4 - (modules json core) 4 + (modules json value codec core) 5 5 (libraries 6 + fmt 6 7 (re_export loc)))
+1
lib/value.ml
··· 1 + (** Generic JSON values. See {!Json.Value} for the public API. *)
+1
lib/value.mli
··· 1 + (** Generic JSON values. See {!Json.Value} for the public API. *)