Module Shexp_sexp.Sexp
type t= Base.Sexp.t=|Atom of string|List of t list
val int32 : int32 -> tval int64 : int64 -> tval float : float -> tval string : string -> tval char : char -> tval bool : bool -> tval exn : exn -> tval pair : ('a -> t) -> ('b -> t) -> ('a * 'b) -> tval list : ('a -> t) -> 'a list -> tval option : ('a -> t) -> 'a option -> tval record : (string * t) list -> tval cstr : string -> t list -> tval cstr_record : string -> (string * t) list -> tval cstr_list : string -> ('a -> t) -> 'a list -> tval register_exn_converter : extension_constructor -> (exn -> t) -> unit