Module CamomileLibrary.Type.ULine


module ULine: sig .. end


Line I/O, conversion of line separators.
type separator = [ `CR | `CRLF | `LF | `LS | `NEL | `PS ] 
Line separators.
class input : separator -> CamomileLibrary.Type.UChar.t
#CamomileLibrary.Type.OOChannel.obj_input_channel ->
[CamomileLibrary.Type.UChar.t] CamomileLibrary.Type.OOChannel.obj_input_channel
new input separator input_obj creates the new input channel object CamomileLibrary.Type.OOChannel.obj_input_channel which reads from input_obj and converts line separators (all of CR, LF, CRLF, NEL, LS, PS) to separator.
class output : separator -> CamomileLibrary.Type.UChar.t
#CamomileLibrary.Type.OOChannel.obj_output_channel ->
[CamomileLibrary.Type.UChar.t] CamomileLibrary.Type.OOChannel.obj_output_channel
new output separator output_obj creates the new output channel object CamomileLibrary.Type.OOChannel.obj_output_channel which receives Unicode characters and converts line separators (all of CR, LF, CRLF, NEL, LS, PS) to separator.
module type Type = sig .. end
module Make: 
functor (Text : CamomileLibrary.Type.UnicodeString.Type) -> Type with type text = Text.t