package camomile

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Line IO

type separator = [
  1. | `CR
  2. | `LF
  3. | `CRLF
  4. | `NEL
  5. | `LS
  6. | `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 -> UChar.t OOChannel.obj_input_channel -> UChar.t CamomileLibrary__.OOChannel.obj_input_channel

new input separator input_obj creates the new input channel object 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 -> UChar.t OOChannel.obj_output_channel -> UChar.t CamomileLibrary__.OOChannel.obj_output_channel

new output separator output_obj creates the new output channel object 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 = ULine.Type
module Make = ULine.Make