Module Base__Sexp
type t= Sexplib0.Sexp.t=|Atom of string|List of t listType of S-expressions
val compare : t -> t -> intval hash_fold_t : Base.Hash.state -> t -> Base.Hash.stateval hash : t -> Base.Hash.hash_value
include module type of Sexplib0.Sexp with type t := Sexplib0.Sexp.t
module Private : sig ... endval of_int_style : [ `Underscores | `No_underscores ] Stdlib.refval of_float_style : [ `Underscores | `No_underscores ] Stdlib.ref
Styles
val to_string : Sexplib0.Sexp.t -> stringSame as
to_string_mach.
val to_string_mach : Sexplib0.Sexp.t -> stringto_string_mach sexpconverts S-expressionsexpto a string in machine readable (i.e. most compact) form.
val to_string_hum : ?indent:int -> Sexplib0.Sexp.t -> stringto_string_hum ?indent sexpconverts S-expressionsexpto a string in human readable form with indentation levelindent.- parameter indent
default =
!default_indent
Conversion to strings
val pp : Stdlib.Format.formatter -> Sexplib0.Sexp.t -> unitSame as
pp_mach.
val pp_mach : Stdlib.Format.formatter -> Sexplib0.Sexp.t -> unitpp_mach ppf sexpoutputs S-expressionsexpto formatterppfin machine readable (i.e. most compact) form.
val pp_hum_indent : int -> Stdlib.Format.formatter -> Sexplib0.Sexp.t -> unitpp_hum_indent n ppf sexpoutputs S-expressionsexpto formatterppfin human readable form and indentation leveln.
val pp_hum : Stdlib.Format.formatter -> Sexplib0.Sexp.t -> unitpp_hum ppf sexpoutputs S-expressionsexpto formatterppfin human readable form.
Pretty printing of S-expressions
val default_indent : int Stdlib.refdefault_indentreference to default indentation level for human-readable conversions.Initialisation value: 2.
Defaults
val message : string -> (string * Sexplib0.Sexp.t) list -> Sexplib0.Sexp.tHelper to build nice s-expressions for error messages. It imitates the behavior of
[%message ...]from the ppx_sexp_message rewriter.message name key_valuesproduces a s-expression list starting with atomnameand followed by list of size 2 of the form(key value). When the key is the empty string,valueis used directly instead as for[%message].For instance the following code:
Sexp.message "error" [ "x", sexp_of_int 42 ; "" , sexp_of_exn Exit ]produces the s-expression:
(error (x 42) Exit)
Helpers
exceptionOf_sexp_error of exn * Sexplib0.Sexp.tOf_sexp_error (exn, sexp)the exception raised when an S-expression could not be successfully converted to an OCaml-value.
exceptionNot_found_s of Sexplib0.Sexp.tNot_found_sis used by functions that historically raisedNot_found, to allow them to raise an exception that contains an informative error message (as a sexp), while still having an exception that can be distinguished from other exceptions.
val compare : Sexplib0.Sexp.t -> Sexplib0.Sexp.t -> intval equal : Sexplib0.Sexp.t -> Sexplib0.Sexp.t -> boolval sexp_of_t : Sexplib0.Sexp.t -> Sexplib0.Sexp.tval t_of_sexp : Sexplib0.Sexp.t -> Sexplib0.Sexp.t