package sexp

  1. Overview
  2. Docs
S-expression swiss knife

Install

dune-project
 Dependency

Authors

Maintainers

Sources

sexp-v0.15.0.tar.gz
sha256=7c0bc2f04bf7abda23ccf02ce10cf90cd9e60124736ffa6501388693f2f30ac0

doc/src/sexp.sexp_app/manifest.ml.html

Source file manifest.ml

1
2
3
4
5
6
7
open Core

type 'a t = 'a list ref

let create () = ref []
let add t x = t := x :: !t
let to_list t = List.rev !t
OCaml

Innovation. Community. Security.