package edn

  1. Overview
  2. Docs
Parsing OCaml library for EDN format

Install

Dune Dependency

Authors

Maintainers

Sources

edn-0.2.0.tbz
sha256=7bf2f24eed0e1d7be00d218dcf27c1de53fed276eaf86bb5ea510df12732cdc0
sha512=cef755b969e817d43944be53560803b64b379dc2af1ee39ed0a1c83f79bcce8e664ccc0911c7075d9352ee17a4b2a39211d16da724859dff21702b426bb34730

Description

This library implements EDN parser and generator for OCaml.

Published: 13 Oct 2022

README

edn — Parsing OCaml library for EDN format

v0.2.0

This library implements EDN parser and generator for OCaml.

Homepage: https://github.com/prepor/ocaml-edn Contact: Andrew Rudenko <ceo@prepor.ru>

Installation

edn can be installed with opam:

opam install edn

If you don't use opam consult the opam file for build instructions.

Usage

Edn.from_string "{:a #foo/bar [1 2 3]}";;
- : Edn.t = `Assoc [(`Keyword (None, "a"), `Tag (Some "foo", "bar", `Vector [`Int 1; `Int 2; `Int 3]))]

PPX generator

There is cconv encoder/decoder in edn.cconv package. You can use it with cconv.ppx to generate encoders/decoders from/to your types.

type book = { title : string; quantity : int} [@@deriving cconv]
type library = { books : book list } [@@deriving cconv];;

Edn_cconv.of_string_exn decode_library "{:books [{:title \"The Catcher in the Rye\" :quantity 10}]}";;
- : library = {books = [{title = "The Catcher in the Rye"; quantity = 10}]}

Documentation

The documentation and API reference is automatically generated by ocamldoc from the interfaces. It can be consulted online and there is a generated version in the doc directory of the distribution.

Dependencies (3)

  1. menhir >= "20180523"
  2. dune >= "2.2.0"
  3. ocaml >= "4.07.0"

Dev Dependencies (1)

  1. ounit2 with-test

Used by

None

Conflicts

None