module ULine: sig
.. end
Line I/O, conversion of line separators.
type
separator = [ `CR | `CRLF | `LF | `LS | `NEL | `PS ]
Line separators.
`CR
specifies carriage return.
`LF
specifies linefeed.
`CRLF
specifies the sequence of carriage return and linefeed.
`NEL
specifies next line (\u0085).
`LS
specifies Unicode line separator (\u2028).
`PS
specifies Unicode paragraph separator (\u2029).
class input : separator -> CamomileLibrary.Type.UChar.t
#CamomileLibrary.Type.OOChannel.obj_input_channel ->
[CamomileLibrary.Type.UChar.t]
CamomileLibrary.Type.OOChannel.obj_input_channel
class output : separator -> CamomileLibrary.Type.UChar.t
#CamomileLibrary.Type.OOChannel.obj_output_channel ->
[CamomileLibrary.Type.UChar.t]
CamomileLibrary.Type.OOChannel.obj_output_channel
module type Type = sig
.. end
module Make: