package gen

  1. Overview
  2. Docs
val with_in : ?mode:int -> ?flags:Pervasives.open_flag list -> string -> (char t -> 'a) -> 'a

read filename f opens filename and calls f g, where g is a generator of characters from the file. The generator is only valid within the scope in which f is called.

val write_str : ?mode:int -> ?flags:Pervasives.open_flag list -> ?sep:string -> string -> string t -> unit

write_to filename g writes all strings from g into the given file. It takes care of opening and closing the file.

  • parameter mode

    default 0o644

  • parameter flags

    used by open_out_gen. Default: [Open_creat;Open_wronly].

  • parameter sep

    separator between each string (e.g. newline)

val write : ?mode:int -> ?flags:Pervasives.open_flag list -> string -> char t -> unit

Same as write_str but with individual characters

OCaml

Innovation. Community. Security.