val std_compare : 'a -> 'a -> int
module type T = sig ... endmodule Dummy : sig ... endval dump_list : ?sep:string -> (Stdlib.Format.formatter -> 'a -> unit) -> Stdlib.Format.formatter -> 'a list -> unitval dump_array : ?sep:string -> (Stdlib.Format.formatter -> 'a -> unit) -> Stdlib.Format.formatter -> 'a array -> unit
module Bytes : T with type t = bytesmodule Int : T with type t = intmodule Bool : T with type t = boolmodule Array : functor (X : T) -> sig ... endmodule List : functor (X : T) -> sig ... endmodule Pair : functor (X : T) -> functor (Y : T) -> sig ... endtype ('a, 'b) choice = | Left of 'a |
| Right of 'b |
module Sum : functor (X : T) -> functor (Y : T) -> sig ... endmodule Print : sig ... end