Base.Exporttype 'a array = 'a Array.tval array_of_sexp : 'a. (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a arrayval sexp_of_array : 'a. ('a -> Sexplib0.Sexp.t) -> 'a array -> Sexplib0.Sexp.tval array_sexp_grammar : 
  'a. 'a Sexplib0.Sexp_grammar.t ->
  'a array Sexplib0.Sexp_grammar.ttype bool = Bool.tval hash_fold_bool : Hash.state -> bool -> Hash.stateval hash_bool : bool -> Hash.hash_valueval bool_of_sexp : Sexplib0.Sexp.t -> boolval sexp_of_bool : bool -> Sexplib0.Sexp.tval bool_sexp_grammar : bool Sexplib0.Sexp_grammar.ttype char = Char.tval hash_fold_char : Hash.state -> char -> Hash.stateval hash_char : char -> Hash.hash_valueval char_of_sexp : Sexplib0.Sexp.t -> charval sexp_of_char : char -> Sexplib0.Sexp.tval char_sexp_grammar : char Sexplib0.Sexp_grammar.ttype exn = Exn.tval sexp_of_exn : exn -> Sexplib0.Sexp.ttype float = Float.tval hash_fold_float : Hash.state -> float -> Hash.stateval hash_float : float -> Hash.hash_valueval float_of_sexp : Sexplib0.Sexp.t -> floatval sexp_of_float : float -> Sexplib0.Sexp.tval float_sexp_grammar : float Sexplib0.Sexp_grammar.ttype int = Int.tval hash_fold_int : Hash.state -> int -> Hash.stateval hash_int : int -> Hash.hash_valueval int_of_sexp : Sexplib0.Sexp.t -> intval sexp_of_int : int -> Sexplib0.Sexp.tval int_sexp_grammar : int Sexplib0.Sexp_grammar.ttype int32 = Int32.tval hash_fold_int32 : Hash.state -> int32 -> Hash.stateval hash_int32 : int32 -> Hash.hash_valueval int32_of_sexp : Sexplib0.Sexp.t -> int32val sexp_of_int32 : int32 -> Sexplib0.Sexp.tval int32_sexp_grammar : int32 Sexplib0.Sexp_grammar.ttype int64 = Int64.tval hash_fold_int64 : Hash.state -> int64 -> Hash.stateval hash_int64 : int64 -> Hash.hash_valueval int64_of_sexp : Sexplib0.Sexp.t -> int64val sexp_of_int64 : int64 -> Sexplib0.Sexp.tval int64_sexp_grammar : int64 Sexplib0.Sexp_grammar.ttype 'a list = 'a List.tval hash_fold_list : 
  'a. (Hash.state -> 'a -> Hash.state) ->
  Hash.state ->
  'a list ->
  Hash.stateval list_of_sexp : 'a. (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a listval sexp_of_list : 'a. ('a -> Sexplib0.Sexp.t) -> 'a list -> Sexplib0.Sexp.tval list_sexp_grammar : 
  'a. 'a Sexplib0.Sexp_grammar.t ->
  'a list Sexplib0.Sexp_grammar.ttype nativeint = Nativeint.tval hash_fold_nativeint : Hash.state -> nativeint -> Hash.stateval hash_nativeint : nativeint -> Hash.hash_valueval nativeint_of_sexp : Sexplib0.Sexp.t -> nativeintval sexp_of_nativeint : nativeint -> Sexplib0.Sexp.tval nativeint_sexp_grammar : nativeint Sexplib0.Sexp_grammar.ttype 'a option = 'a Option.tval hash_fold_option : 
  'a. (Hash.state -> 'a -> Hash.state) ->
  Hash.state ->
  'a option ->
  Hash.stateval option_of_sexp : 
  'a. (Sexplib0.Sexp.t -> 'a) ->
  Sexplib0.Sexp.t ->
  'a optionval sexp_of_option : 
  'a. ('a -> Sexplib0.Sexp.t) ->
  'a option ->
  Sexplib0.Sexp.tval option_sexp_grammar : 
  'a. 'a Sexplib0.Sexp_grammar.t ->
  'a option Sexplib0.Sexp_grammar.ttype 'a ref = 'a Ref.tval ref_of_sexp : 'a. (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a refval sexp_of_ref : 'a. ('a -> Sexplib0.Sexp.t) -> 'a ref -> Sexplib0.Sexp.tval ref_sexp_grammar : 
  'a. 'a Sexplib0.Sexp_grammar.t ->
  'a ref Sexplib0.Sexp_grammar.ttype string = String.tval hash_fold_string : Hash.state -> string -> Hash.stateval hash_string : string -> Hash.hash_valueval string_of_sexp : Sexplib0.Sexp.t -> stringval sexp_of_string : string -> Sexplib0.Sexp.tval string_sexp_grammar : string Sexplib0.Sexp_grammar.ttype bytes = Bytes.tval bytes_of_sexp : Sexplib0.Sexp.t -> bytesval sexp_of_bytes : bytes -> Sexplib0.Sexp.tval bytes_sexp_grammar : bytes Sexplib0.Sexp_grammar.ttype unit = Unit.tval hash_fold_unit : Hash.state -> unit -> Hash.stateval hash_unit : unit -> Hash.hash_valueval unit_of_sexp : Sexplib0.Sexp.t -> unitval sexp_of_unit : unit -> Sexplib0.Sexp.tval unit_sexp_grammar : unit Sexplib0.Sexp_grammar.tFormat stuff
type nonrec ('a, 'b, 'c) format = ('a, 'b, 'c) formattype nonrec ('a, 'b, 'c, 'd) format4 = ('a, 'b, 'c, 'd) format4type nonrec ('a, 'b, 'c, 'd, 'e, 'f) format6 = ('a, 'b, 'c, 'd, 'e, 'f) format6List operators
include module type of struct include List.Infix endInt operators and comparisons
Float operators
include module type of struct include Float.O_dot endSimilar to O, except that operators are suffixed with a dot, allowing one to have both int and float operators in scope simultaneously.
Similar to O, except that operators are suffixed with a dot, allowing one to have both int and float operators in scope simultaneously.
Reverse application operator. x |> g |> f is equivalent to f (g (x)).
Boolean operations
val ignore : _ -> unitReference operations
val (!) : 'a ref -> 'aval ref : 'a -> 'a refPair operations
Exceptions stuff
val raise : exn -> _val raise_s : Sexp.t -> 'aMisc
val phys_equal : 'a -> 'a -> boolval force : 'a Lazy.t -> 'a