Module Std
module Std: sig end
Additional functions.
val input_lines : Pervasives.in_channel -> string Enum.t
returns an enumeration over lines of a input channel, as read by the
input_line
function.
val input_chars : Pervasives.in_channel -> char Enum.t
returns an enumeration over characters of a input channel.
val input_list : Pervasives.in_channel -> string list
returns the list of lines read from an input channel.
val input_all : Pervasives.in_channel -> string
return the whole contents of an input channel as a single
string.
val print_bool : bool -> unit
print a boolean to stdout.
val prerr_bool : bool -> unit
print a boolean to stderr.