package stdio

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module In_channel : sig ... end

In_channel collects all of the pervasive functions that work on in_channels.

module Out_channel : sig ... end
val stdin : In_channel.t

Same as In_channel.stdin

val stdout : Out_channel.t

Same as Out_channel.stdout

val stderr : Out_channel.t

Same as Out_channel.stderr

val printf : ('a, Out_channel.t, Base.Unit.t) Pervasives.format -> 'a

Same as Out_channel.printf

val eprintf : ('a, Out_channel.t, Base.Unit.t) Pervasives.format -> 'a

Same as Out_channel.eprintf

val print_endline : Base.String.t -> Base.Unit.t

Same as Out_channel.print_endline

val prerr_endline : Base.String.t -> Base.Unit.t

Same as Out_channel.prerr_endline