Module Base__.Import
include Base__.Import0
include module type of sig ... end with type 'a ref := 'a Stdlib.ref with type ('a, 'b, 'c) format := ('a, 'b, 'c) Stdlib.format with type ('a, 'b, 'c, 'd) format4 := ('a, 'b, 'c, 'd) Stdlib.format4 with type ('a, 'b, 'c, 'd, 'e, 'f) format6 := ('a, 'b, 'c, 'd, 'e, 'f) Stdlib.format6 with module Array := Shadow_stdlib.Array with module Bool := Shadow_stdlib.Bool with module Buffer := Shadow_stdlib.Buffer with module Bytes := Shadow_stdlib.Bytes with module Char := Shadow_stdlib.Char with module Float := Shadow_stdlib.Float with module Hashtbl := Shadow_stdlib.Hashtbl with module Int := Shadow_stdlib.Int with module Int32 := Shadow_stdlib.Int32 with module Int64 := Shadow_stdlib.Int64 with module Lazy := Shadow_stdlib.Lazy with module List := Shadow_stdlib.List with module Map := Shadow_stdlib.Map with module Nativeint := Shadow_stdlib.Nativeint with module Option := Shadow_stdlib.Option with module Printf := Shadow_stdlib.Printf with module Queue := Shadow_stdlib.Queue with module Random := Shadow_stdlib.Random with module Result := Shadow_stdlib.Result with module Set := Shadow_stdlib.Set with module Stack := Shadow_stdlib.Stack with module String := Shadow_stdlib.String with module Sys := Shadow_stdlib.Sys with module Uchar := Shadow_stdlib.Uchar with module Unit := Shadow_stdlib.Unit
val (=) : 'a -> 'a -> boolval (<>) : 'a -> 'a -> boolval (<) : 'a -> 'a -> boolval (>) : 'a -> 'a -> boolval (<=) : 'a -> 'a -> boolval (>=) : 'a -> 'a -> boolval compare : 'a -> 'a -> int
val (==) : 'a -> 'a -> boolval (!=) : 'a -> 'a -> boolval not : bool -> boolval (&&) : bool -> bool -> boolval (&) : bool -> bool -> boolval (||) : bool -> bool -> boolval or : bool -> bool -> boolval __LOC__ : stringval __FILE__ : stringval __LINE__ : intval __MODULE__ : stringval __POS__ : string * int * int * intval __LOC_OF__ : 'a -> string * 'aval __LINE_OF__ : 'a -> int * 'aval __POS_OF__ : 'a -> (string * int * int * int) * 'aval (|>) : 'a -> ('a -> 'b) -> 'bval (@@) : ('a -> 'b) -> 'a -> 'bval (~-) : int -> intval (~+) : int -> intval succ : int -> intval pred : int -> intval (+) : int -> int -> intval (-) : int -> int -> intval (*) : int -> int -> intval (/) : int -> int -> intval (mod) : int -> int -> int
val (lsl) : int -> int -> intval (lsr) : int -> int -> intval (asr) : int -> int -> intval (~-.) : float -> floatval (~+.) : float -> floatval (+.) : float -> float -> floatval (-.) : float -> float -> floatval (*.) : float -> float -> floatval (/.) : float -> float -> floatval (**) : float -> float -> floatval sqrt : float -> floatval exp : float -> floatval log : float -> floatval log10 : float -> floatval expm1 : float -> floatval log1p : float -> floatval cos : float -> floatval sin : float -> floatval tan : float -> floatval acos : float -> floatval asin : float -> floatval atan : float -> floatval atan2 : float -> float -> floatval hypot : float -> float -> floatval cosh : float -> floatval sinh : float -> floatval tanh : float -> floatval ceil : float -> floatval floor : float -> floatval abs_float : float -> floatval copysign : float -> float -> floatval mod_float : float -> float -> floatval frexp : float -> float * intval ldexp : float -> int -> floatval modf : float -> float * floatval float : int -> floatval float_of_int : int -> floatval truncate : float -> intval int_of_float : float -> int
val infinity : floatval neg_infinity : floatval nan : floatval max_float : floatval min_float : floatval epsilon_float : float
val classify_float : float -> fpclass
val string_of_bool : bool -> stringval bool_of_string_opt : string -> bool optionval bool_of_string : string -> boolval string_of_int : int -> stringval int_of_string_opt : string -> int option
val stdin : in_channelval stdout : out_channelval stderr : out_channelval print_char : char -> unitval print_string : string -> unitval print_bytes : bytes -> unitval print_int : int -> unitval print_float : float -> unitval print_endline : string -> unitval print_newline : unit -> unitval prerr_char : char -> unitval prerr_string : string -> unitval prerr_bytes : bytes -> unitval prerr_int : int -> unitval prerr_float : float -> unitval prerr_endline : string -> unitval prerr_newline : unit -> unitval read_line : unit -> stringval read_int_opt : unit -> int optionval read_int : unit -> intval read_float_opt : unit -> float optionval read_float : unit -> float
type nonrec open_flag= Stdlib.open_flag=|Open_rdonly|Open_wronly|Open_append|Open_creat|Open_trunc|Open_excl|Open_binary|Open_text|Open_nonblock
val open_out : string -> out_channelval open_out_bin : string -> out_channelval open_out_gen : open_flag list -> int -> string -> out_channelval flush : out_channel -> unitval flush_all : unit -> unitval output_char : out_channel -> char -> unitval output_string : out_channel -> string -> unitval output_bytes : out_channel -> bytes -> unitval output : out_channel -> bytes -> int -> int -> unitval output_substring : out_channel -> string -> int -> int -> unitval output_byte : out_channel -> int -> unitval output_binary_int : out_channel -> int -> unitval output_value : out_channel -> 'a -> unitval seek_out : out_channel -> int -> unitval pos_out : out_channel -> intval out_channel_length : out_channel -> intval close_out : out_channel -> unitval close_out_noerr : out_channel -> unitval set_binary_mode_out : out_channel -> bool -> unitval open_in : string -> in_channelval open_in_bin : string -> in_channelval open_in_gen : open_flag list -> int -> string -> in_channelval input_char : in_channel -> charval input_line : in_channel -> stringval input : in_channel -> bytes -> int -> int -> intval really_input : in_channel -> bytes -> int -> int -> unitval really_input_string : in_channel -> int -> stringval input_byte : in_channel -> intval input_binary_int : in_channel -> intval input_value : in_channel -> 'aval seek_in : in_channel -> int -> unitval pos_in : in_channel -> intval in_channel_length : in_channel -> intval close_in : in_channel -> unitval close_in_noerr : in_channel -> unitval set_binary_mode_in : in_channel -> bool -> unit
val ref : 'a -> 'a refval (!) : 'a ref -> 'aval (:=) : 'a ref -> 'a -> unitval incr : int ref -> unitval decr : int ref -> unit
type nonrec ('a, 'b) result= ('a, 'b) Stdlib.result=|Ok of 'a|Error of 'btype nonrec ('a, 'b, 'c, 'd, 'e, 'f) format6= ('a, 'b, 'c, 'd, 'e, 'f) CamlinternalFormatBasics.format6type nonrec ('a, 'b, 'c, 'd) format4= ('a, 'b, 'c, 'c, 'c, 'd) format6type nonrec ('a, 'b, 'c) format= ('a, 'b, 'c, 'c) format4
val string_of_format : ('a, 'b, 'c, 'd, 'e, 'f) format6 -> string
val (^^) : ('a, 'b, 'c, 'd, 'e, 'f) format6 -> ('f, 'b, 'c, 'e, 'g, 'h) format6 -> ('a, 'b, 'c, 'd, 'g, 'h) format6val exit : int -> 'aval at_exit : (unit -> unit) -> unitval valid_float_lexem : string -> stringval unsafe_really_input : in_channel -> bytes -> int -> int -> unitval do_at_exit : unit -> unit
type 'a ref= 'a Caml.ref={mutable contents : 'a;}
module Caml = Base__.Import0.Camlval (|>) : 'a -> ('a -> 'b) -> 'bval (&&) : bool -> bool -> boolval (||) : bool -> bool -> boolval not : bool -> bool
val (!=) : 'a -> 'a -> boolval (*) : int -> int -> intval (**) : float -> float -> floatval (*.) : float -> float -> floatval (+) : int -> int -> intval (+.) : float -> float -> floatval (-) : int -> int -> intval (-.) : float -> float -> floatval (/) : int -> int -> intval (/.) : float -> float -> float
module Poly = Base__.Poly0
module Int_replace_polymorphic_compare = Base__.Import0.Int_replace_polymorphic_compareinclude Int_replace_polymorphic_compare
val (<) : int -> int -> boolval (<=) : int -> int -> boolval (<>) : int -> int -> boolval (=) : int -> int -> boolval (>) : int -> int -> boolval (>=) : int -> int -> boolval compare : int -> int -> intval ascending : int -> int -> intval descending : int -> int -> intval equal : int -> int -> boolval max : int -> int -> intval min : int -> int -> int
module Int32_replace_polymorphic_compare = Base__.Import0.Int32_replace_polymorphic_comparemodule Int64_replace_polymorphic_compare = Base__.Import0.Int64_replace_polymorphic_comparemodule Nativeint_replace_polymorphic_compare = Base__.Import0.Nativeint_replace_polymorphic_comparemodule Bool_replace_polymorphic_compare = Base__.Import0.Bool_replace_polymorphic_comparemodule Char_replace_polymorphic_compare = Base__.Import0.Char_replace_polymorphic_comparemodule Uchar_replace_polymorphic_compare = Base__.Import0.Uchar_replace_polymorphic_comparemodule Float_replace_polymorphic_compare = Base__.Import0.Float_replace_polymorphic_comparemodule String_replace_polymorphic_compare = Base__.Import0.String_replace_polymorphic_comparemodule Bytes_replace_polymorphic_compare = Base__.Import0.Bytes_replace_polymorphic_compareval (@) : 'a list -> 'a list -> 'a listval (^) : string -> string -> stringval (~-) : int -> intval (~-.) : float -> floatval (asr) : int -> int -> intval (land) : int -> int -> intval (lnot) : int -> intval (lor) : int -> int -> intval (lsl) : int -> int -> intval (lsr) : int -> int -> intval (lxor) : int -> int -> intval (mod) : int -> int -> intval abs : int -> intval failwith : string -> 'aval fst : ('a * 'b) -> 'aval invalid_arg : string -> 'aval snd : ('a * 'b) -> 'b
include Sexplib0.Sexp_conv
type 'a sexp_option= 'a optiontype 'a sexp_list= 'a listtype 'a sexp_array= 'a arraytype 'a sexp_opaque= 'a
Conversion of OCaml-values to S-expressions
val default_string_of_float : (float -> string) Stdlib.refdefault_string_of_floatreference to the default function used to convert floats to strings.Initially set to
fun n -> sprintf "%.20G" n.
val write_old_option_format : bool Stdlib.refwrite_old_option_formatreference for the default option format used to write option values. If set totrue, the old-style option format will be used, the new-style one otherwise.Initially set to
true.
val read_old_option_format : bool Stdlib.refread_old_option_formatreference for the default option format used to read option values.Of_sexp_errorwill be raised with old-style option values if this reference is set tofalse. Reading new-style option values is always supported. Using a global reference instead of changing the converter calling conventions is the only way to avoid breaking old code with the standard macros.Initially set to
true.
val list_map : ('a -> 'b) -> 'a list -> 'b listWe re-export a tail recursive map function, because some modules override the standard library functions (e.g.
StdLabels) which wrecks havoc with the camlp4 extension.
val sexp_of_unit : unit -> Sexplib0.Sexp.tsexp_of_unit ()converts a value of typeunitto an S-expression.
val sexp_of_bool : bool -> Sexplib0.Sexp.tsexp_of_bool bconverts the valuexof typeboolto an S-expression.
val sexp_of_string : string -> Sexplib0.Sexp.tsexp_of_bool strconverts the valuestrof typestringto an S-expression.
val sexp_of_bytes : bytes -> Sexplib0.Sexp.tsexp_of_bool strconverts the valuestrof typebytesto an S-expression.
val sexp_of_char : char -> Sexplib0.Sexp.tsexp_of_char cconverts the valuecof typecharto an S-expression.
val sexp_of_int : int -> Sexplib0.Sexp.tsexp_of_int nconverts the valuenof typeintto an S-expression.
val sexp_of_float : float -> Sexplib0.Sexp.tsexp_of_float nconverts the valuenof typefloatto an S-expression.
val sexp_of_int32 : int32 -> Sexplib0.Sexp.tsexp_of_int32 nconverts the valuenof typeint32to an S-expression.
val sexp_of_int64 : int64 -> Sexplib0.Sexp.tsexp_of_int64 nconverts the valuenof typeint64to an S-expression.
val sexp_of_nativeint : nativeint -> Sexplib0.Sexp.tsexp_of_nativeint nconverts the valuenof typenativeintto an S-expression.
val sexp_of_ref : ('a -> Sexplib0.Sexp.t) -> 'a Stdlib.ref -> Sexplib0.Sexp.tsexp_of_ref conv rconverts the valuerof type'a refto an S-expression. Usesconvto convert values of type'ato an S-expression.
val sexp_of_lazy_t : ('a -> Sexplib0.Sexp.t) -> 'a lazy_t -> Sexplib0.Sexp.tsexp_of_lazy_t conv lconverts the valuelof type'a lazy_tto an S-expression. Usesconvto convert values of type'ato an S-expression.
val sexp_of_option : ('a -> Sexplib0.Sexp.t) -> 'a option -> Sexplib0.Sexp.tsexp_of_option conv optconverts the valueoptof type'a optionto an S-expression. Usesconvto convert values of type'ato an S-expression.
val sexp_of_pair : ('a -> Sexplib0.Sexp.t) -> ('b -> Sexplib0.Sexp.t) -> ('a * 'b) -> Sexplib0.Sexp.tsexp_of_pair conv1 conv2 pairconverts a pair to an S-expression. It uses its first argument to convert the first element of the pair, and its second argument to convert the second element of the pair.
val sexp_of_triple : ('a -> Sexplib0.Sexp.t) -> ('b -> Sexplib0.Sexp.t) -> ('c -> Sexplib0.Sexp.t) -> ('a * 'b * 'c) -> Sexplib0.Sexp.tsexp_of_triple conv1 conv2 conv3 tripleconverts a triple to an S-expression usingconv1,conv2, andconv3to convert its elements.
val sexp_of_list : ('a -> Sexplib0.Sexp.t) -> 'a list -> Sexplib0.Sexp.tsexp_of_list conv lstconverts the valuelstof type'a listto an S-expression. Usesconvto convert values of type'ato an S-expression.
val sexp_of_array : ('a -> Sexplib0.Sexp.t) -> 'a array -> Sexplib0.Sexp.tsexp_of_array conv arconverts the valuearof type'a arrayto an S-expression. Usesconvto convert values of type'ato an S-expression.
val sexp_of_hashtbl : ('a -> Sexplib0.Sexp.t) -> ('b -> Sexplib0.Sexp.t) -> ('a, 'b) Stdlib.Hashtbl.t -> Sexplib0.Sexp.tsexp_of_hashtbl conv_key conv_value htblconverts the valuehtblof type('a, 'b) Hashtbl.tto an S-expression. Usesconv_keyto convert the hashtable keys of type'a, andconv_valueto convert hashtable values of type'bto S-expressions.
val sexp_of_opaque : 'a -> Sexplib0.Sexp.tsexp_of_opaque xconverts the valuexof opaque type to an S-expression. This means the user need not provide converters, but the result cannot be interpreted.
val sexp_of_fun : ('a -> 'b) -> Sexplib0.Sexp.tsexp_of_fun fconverts the valuefof function type to a dummy S-expression. Functions cannot be serialized as S-expressions, but at least a placeholder can be generated for pretty-printing.
Conversion of S-expressions to OCaml-values
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.
val record_check_extra_fields : bool Stdlib.refrecord_check_extra_fieldschecks for extra (= unknown) fields in record S-expressions.
val of_sexp_error : string -> Sexplib0.Sexp.t -> 'aof_sexp_error reason sexp- raises Of_sexp_error
(Failure reason, sexp).
val of_sexp_error_exn : exn -> Sexplib0.Sexp.t -> 'aof_sexp_error exc sexp- raises Of_sexp_error
(exc, sexp).
val unit_of_sexp : Sexplib0.Sexp.t -> unitunit_of_sexp sexpconverts S-expressionsexpto a value of typeunit.
val bool_of_sexp : Sexplib0.Sexp.t -> boolbool_of_sexp sexpconverts S-expressionsexpto a value of typebool.
val string_of_sexp : Sexplib0.Sexp.t -> stringstring_of_sexp sexpconverts S-expressionsexpto a value of typestring.
val bytes_of_sexp : Sexplib0.Sexp.t -> bytesbytes_of_sexp sexpconverts S-expressionsexpto a value of typebytes.
val char_of_sexp : Sexplib0.Sexp.t -> charchar_of_sexp sexpconverts S-expressionsexpto a value of typechar.
val int_of_sexp : Sexplib0.Sexp.t -> intint_of_sexp sexpconverts S-expressionsexpto a value of typeint.
val float_of_sexp : Sexplib0.Sexp.t -> floatfloat_of_sexp sexpconverts S-expressionsexpto a value of typefloat.
val int32_of_sexp : Sexplib0.Sexp.t -> int32int32_of_sexp sexpconverts S-expressionsexpto a value of typeint32.
val int64_of_sexp : Sexplib0.Sexp.t -> int64int64_of_sexp sexpconverts S-expressionsexpto a value of typeint64.
val nativeint_of_sexp : Sexplib0.Sexp.t -> nativeintnativeint_of_sexp sexpconverts S-expressionsexpto a value of typenativeint.
val ref_of_sexp : (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a Stdlib.refref_of_sexp conv sexpconverts S-expressionsexpto a value of type'a refusing conversion functionconv, which converts an S-expression to a value of type'a.
val lazy_t_of_sexp : (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a lazy_tlazy_t_of_sexp conv sexpconverts S-expressionsexpto a value of type'a lazy_tusing conversion functionconv, which converts an S-expression to a value of type'a.
val option_of_sexp : (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a optionoption_of_sexp conv sexpconverts S-expressionsexpto a value of type'a optionusing conversion functionconv, which converts an S-expression to a value of type'a.
val pair_of_sexp : (Sexplib0.Sexp.t -> 'a) -> (Sexplib0.Sexp.t -> 'b) -> Sexplib0.Sexp.t -> 'a * 'bpair_of_sexp conv1 conv2 sexpconverts S-expressionsexpto a pair of type'a * 'busing conversion functionsconv1andconv2, which convert S-expressions to values of type'aand'brespectively.
val triple_of_sexp : (Sexplib0.Sexp.t -> 'a) -> (Sexplib0.Sexp.t -> 'b) -> (Sexplib0.Sexp.t -> 'c) -> Sexplib0.Sexp.t -> 'a * 'b * 'ctriple_of_sexp conv1 conv2 conv3 sexpconverts S-expressionsexpto a triple of type'a * 'b * 'cusing conversion functionsconv1,conv2, andconv3, which convert S-expressions to values of type'a,'b, and'crespectively.
val list_of_sexp : (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a listlist_of_sexp conv sexpconverts S-expressionsexpto a value of type'a listusing conversion functionconv, which converts an S-expression to a value of type'a.
val array_of_sexp : (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a arrayarray_of_sexp conv sexpconverts S-expressionsexpto a value of type'a arrayusing conversion functionconv, which converts an S-expression to a value of type'a.
val hashtbl_of_sexp : (Sexplib0.Sexp.t -> 'a) -> (Sexplib0.Sexp.t -> 'b) -> Sexplib0.Sexp.t -> ('a, 'b) Stdlib.Hashtbl.thashtbl_of_sexp conv_key conv_value sexpconverts S-expressionsexpto a value of type('a, 'b) Hashtbl.tusing conversion functionconv_key, which converts an S-expression to hashtable key of type'a, and functionconv_value, which converts an S-expression to hashtable value of type'b.
val opaque_of_sexp : Sexplib0.Sexp.t -> 'aopaque_of_sexp sexp- raises Of_sexp_error
when attempting to convert an S-expression to an opaque value.
val fun_of_sexp : Sexplib0.Sexp.t -> 'afun_of_sexp sexp- raises Of_sexp_error
when attempting to convert an S-expression to a function.
val sexp_of_exn : exn -> Sexplib0.Sexp.tsexp_of_exn excconverts exceptionexcto an S-expression. If no suitable converter is found, the standard converter inPrintexcwill be used to generate an atomic S-expression.
val sexp_of_exn_opt : exn -> Sexplib0.Sexp.t optionsexp_of_exn_opt excconverts exceptionexctoSome sexp. If no suitable converter is found,Noneis returned instead.
module Exn_converter = Sexplib0.Sexp_conv.Exn_converterinclude Base.Sexp.Private.Raw_grammar.Builtin
val unit_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval bool_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval string_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval bytes_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval char_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval int_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval float_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval int32_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval int64_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval nativeint_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval ref_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval lazy_t_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval option_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval list_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.tval array_sexp_grammar : Sexplib0.Sexp.Private.Raw_grammar.t
include Base.Hash.Builtin
val hash_fold_nativeint : nativeint Base.Hash.folderval hash_fold_int64 : int64 Base.Hash.folderval hash_fold_int32 : int32 Base.Hash.folderval hash_fold_char : char Base.Hash.folderval hash_fold_int : int Base.Hash.folderval hash_fold_bool : bool Base.Hash.folderval hash_fold_string : string Base.Hash.folderval hash_fold_float : float Base.Hash.folderval hash_fold_unit : unit Base.Hash.folderval hash_fold_option : 'a Base.Hash.folder -> 'a option Base.Hash.folderval hash_fold_list : 'a Base.Hash.folder -> 'a list Base.Hash.folderval hash_fold_lazy_t : 'a Base.Hash.folder -> 'a lazy_t Base.Hash.folderval hash_fold_ref_frozen : 'a Base.Hash.folder -> 'a Base__.Import0.ref Base.Hash.folderHash support for
arrayandrefis provided, but is potentially DANGEROUS, since it incorporates the current contents of the array/ref into the hash value. Because of this we add a_frozensuffix to the function name.Hash support for
stringis also potentially DANGEROUS, but strings are mutated less often, so we don't append_frozento it.Also note that we don't support
bytes.
val hash_fold_array_frozen : 'a Base.Hash.folder -> 'a array Base.Hash.folderval hash_nativeint : nativeint -> Base.Hash.hash_valueval hash_int64 : int64 -> Base.Hash.hash_valueval hash_int32 : int32 -> Base.Hash.hash_valueval hash_char : char -> Base.Hash.hash_valueval hash_int : int -> Base.Hash.hash_valueval hash_bool : bool -> Base.Hash.hash_valueval hash_string : string -> Base.Hash.hash_valueval hash_float : float -> Base.Hash.hash_valueval hash_unit : unit -> Base.Hash.hash_value
include Base__.Ppx_compare_lib.Builtin
val compare_bool : bool Base__.Ppx_compare_lib.compareval compare_char : char Base__.Ppx_compare_lib.compareval compare_float : float Base__.Ppx_compare_lib.compareval compare_int : int Base__.Ppx_compare_lib.compareval compare_int32 : int32 Base__.Ppx_compare_lib.compareval compare_int64 : int64 Base__.Ppx_compare_lib.compareval compare_nativeint : nativeint Base__.Ppx_compare_lib.compareval compare_string : string Base__.Ppx_compare_lib.compareval compare_unit : unit Base__.Ppx_compare_lib.compareval compare_array : 'a Base__.Ppx_compare_lib.compare -> 'a array Base__.Ppx_compare_lib.compareval compare_list : 'a Base__.Ppx_compare_lib.compare -> 'a list Base__.Ppx_compare_lib.compareval compare_option : 'a Base__.Ppx_compare_lib.compare -> 'a option Base__.Ppx_compare_lib.compareval compare_ref : 'a Base__.Ppx_compare_lib.compare -> 'a Stdlib.ref Base__.Ppx_compare_lib.compareval equal_bool : bool Base__.Ppx_compare_lib.equalval equal_char : char Base__.Ppx_compare_lib.equalval equal_float : float Base__.Ppx_compare_lib.equalval equal_int : int Base__.Ppx_compare_lib.equalval equal_int32 : int32 Base__.Ppx_compare_lib.equalval equal_int64 : int64 Base__.Ppx_compare_lib.equalval equal_nativeint : nativeint Base__.Ppx_compare_lib.equalval equal_string : string Base__.Ppx_compare_lib.equalval equal_unit : unit Base__.Ppx_compare_lib.equalval equal_array : 'a Base__.Ppx_compare_lib.equal -> 'a array Base__.Ppx_compare_lib.equalval equal_list : 'a Base__.Ppx_compare_lib.equal -> 'a list Base__.Ppx_compare_lib.equalval equal_option : 'a Base__.Ppx_compare_lib.equal -> 'a option Base__.Ppx_compare_lib.equalval equal_ref : 'a Base__.Ppx_compare_lib.equal -> 'a Stdlib.ref Base__.Ppx_compare_lib.equal
exceptionNot_found_s of Sexplib0.Sexp.t