Module 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
type nonrec fpclass= Stdlib.fpclass=|FP_normal|FP_subnormal|FP_zero|FP_infinite|FP_nan
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
type nonrec in_channel= Stdlib.in_channeltype nonrec out_channel= Stdlib.out_channel
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
module LargeFile = Stdlib.LargeFileval ref : 'a -> 'a Stdlib.refval (!) : 'a Stdlib.ref -> 'aval (:=) : 'a Stdlib.ref -> 'a -> unitval incr : 'a Stdlib.ref -> unitval decr : 'a Stdlib.ref -> unit
type nonrec ('a, 'b) result= ('a, 'b) Stdlib.result=|Ok of 'a|Error of 'b
val string_of_format : ('a, 'b, 'c, 'd, 'e, 'f) Stdlib.format6 -> string
val format_of_string : ('a, 'b, 'c, 'd, 'e, 'f) Stdlib.format6 -> ('a, 'b, 'c, 'd, 'e, 'f) Stdlib.format6
val (^^) : ('a, 'b, 'c, 'd, 'e, 'f) Stdlib.format6 -> ('a, 'b, 'c, 'd, 'e, 'f) Stdlib.format6 -> ('a, 'b, 'c, 'd, 'e, 'f) Stdlib.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
module Arg : sig ... endParsing of command line arguments.
module ArrayLabels : sig ... endmodule BytesLabels : sig ... endByte sequence operations.
module Callback : sig ... endRegistering OCaml values with the C runtime.
module Complex : sig ... endComplex numbers.
module Digest : sig ... endMD5 message digest.
module Ephemeron : sig ... endEphemerons and weak hash table
module Filename : sig ... endOperations on file names.
module Format : sig ... endPretty-printing.
module Fun : sig ... endFunction manipulation.
module Gc : sig ... endMemory management control and statistics; finalised values.
module Genlex : sig ... endA generic lexical analyzer.
module Lexing : sig ... endThe run-time library for lexers generated by
ocamllex.
module ListLabels : sig ... endmodule Marshal : sig ... endMarshaling of data structures.
module MoreLabels : sig ... endExtra labeled libraries.
module Obj : sig ... endOperations on internal representations of values.
module Oo : sig ... endOperations on objects
module Parsing : sig ... endThe run-time library for parsers generated by
ocamlyacc.
module Pervasives : sig ... end
module Printexc : sig ... endFacilities for printing exceptions and inspecting current call stack.
module Scanf : sig ... endFormatted input functions.
module Seq : sig ... end
module Spacetime : sig ... endProfiling of a program's space behaviour over time. Currently only supported on x86-64 platforms running 64-bit code.
module StdLabels : sig ... endStandard labeled libraries.
module Stream : sig ... endStreams and parsers.
module StringLabels : sig ... endString operations.
module Weak : sig ... endArrays of weak pointers and hash sets of weak pointers.
type 'a ref= 'a Caml.ref={mutable contents : 'a;}
module Caml : sig ... endval (|>) : '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 : sig ... end
module Int_replace_polymorphic_compare : sig ... endinclude 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 : sig ... endmodule Int64_replace_polymorphic_compare : sig ... endmodule Nativeint_replace_polymorphic_compare : sig ... endmodule Bool_replace_polymorphic_compare : sig ... endmodule Char_replace_polymorphic_compare : sig ... endmodule Uchar_replace_polymorphic_compare : sig ... endmodule Float_replace_polymorphic_compare : sig ... endmodule String_replace_polymorphic_compare : sig ... endmodule Bytes_replace_polymorphic_compare : sig ... endval (@) : '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