module LineUtils: sig
.. end
UTF8 line-oriented processing.
module UTF8LineReader: module type of UTF8LineReaderImpl
with type t = UTF8LineReaderImpl.t
Implementation of line-oriented UTF8 readers.
module UTF8LineWriter: module type of UTF8LineWriterImpl
with type t = UTF8LineWriterImpl.t
Implementation of line-oriented UTF8 writers.
val output : OutputStream.t -> Utils.UTF8Buffer.t -> unit
Outputs the content of the passed buffer onto the passed stream,
using a UTF8LineWriter
instance. An exception is raised if an error
occurs during the write operation.