Module My_std


module My_std: sig .. end
Some extensions of the standard library

exception Exit_OK
exception Exit_usage of string
exception Exit_system_error of string
exception Exit_with_code of int
exception Exit_silently_with_code of int
module Outcome: sig .. end
val opt_print : (Format.formatter -> 'a -> unit) -> Format.formatter -> 'a option -> unit
val ksbprintf : (string -> 'a) -> ('b, Format.formatter, unit, 'a) Pervasives.format4 -> 'b
val sbprintf : ('a, Format.formatter, unit, string) Pervasives.format4 -> 'a
module Set: sig .. end
Some extensions of the standard library
module List: sig .. end
module String: sig .. end
module StringSet: Set.Make(String)
val sys_file_exists : string -> bool
val sys_command : string -> int
val filename_concat : string -> string -> string
val invalid_arg' : ('a, Format.formatter, unit, 'b) Pervasives.format4 -> 'a
val the : 'a option -> 'a
val getenv : ?default:string -> string -> string
val with_input_file : ?bin:bool -> string -> (Pervasives.in_channel -> 'a) -> 'a
val with_output_file : ?bin:bool -> string -> (Pervasives.out_channel -> 'a) -> 'a
val read_file : string -> string
val copy_chan : Pervasives.in_channel -> Pervasives.out_channel -> unit
val copy_file : string -> string -> unit
val ( !* ) : 'a Lazy.t -> 'a
val (@:=) : 'a list Pervasives.ref -> 'a list -> unit
val (&) : ('a -> 'b) -> 'a -> 'b
val (|>) : 'a -> ('a -> 'b) -> 'b
val print_string_list : Format.formatter -> string list -> unit
module Digest: sig .. end
val reset_filesys_cache : unit -> unit
val reset_filesys_cache_for_file : string -> unit
val sys_remove : string -> unit
val with_temp_file : string -> string -> (string -> 'a) -> 'a
val memo : ('a -> 'b) -> 'a -> 'b