IO_unix.OutSourceinclude module type of Fuseau.Iostream.Outval create :
?flush:(unit -> unit) ->
?close:(unit -> unit) ->
output_char:(char -> unit) ->
output:(bytes -> int -> int -> unit) ->
unit ->
tCreate a new output stream from raw components.
of_buffer buf is an output channel that writes directly into buf. flush and close have no effect.
Ensure the bytes written so far are indeed written to the underlying storage/network socket/… and are not just sitting in a buffer.
Output a series of lines, each terminated by '\n'.