package merlin-lib

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | Cons of t * t
  2. | Sym of string
  3. | String of string
  4. | Int of int
  5. | Float of float
val nil : t
val of_list : t list -> t
val tell_sexp : (string -> unit) -> t -> unit
val tell_cons : (string -> unit) -> t -> unit
val to_buf : t -> Buffer.t -> unit
val to_string : t -> string
val of_string : string -> t
val of_file_descr : ?on_read:(Unix.file_descr -> unit) -> Unix.file_descr -> unit -> t option
val of_channel : ?on_read:(Unix.file_descr -> unit) -> in_channel -> unit -> t option
val of_json : Std.json -> t
val to_json : t -> Std.json