Module Csexp

module type Sexp = sig ... end
module type S = sig ... end
module Make (Sexp : Sexp) : sig ... end
type t =
  1. | Atom of string
  2. | List of t list
val parse_string : string -> (t, int * string) result
val parse_string_many : string -> (t list, int * string) result
val input : in_channel -> (t, string) result
val input_opt : in_channel -> (t option, string) result
val input_many : in_channel -> (t list, string) result
val serialised_length : t -> int
val to_string : t -> string
val to_buffer : Buffer.t -> t -> unit
val to_channel : out_channel -> t -> unit
module Parser : sig ... end
module type Input = sig ... end
module Make_parser (Input : Input) : sig ... end