package camomile

  1. Overview
  2. Docs
A Unicode library

Install

Dune Dependency

Authors

Maintainers

Sources

camomile-1.0.2.tbz
sha256=f0a419b0affc36500f83b086ffaa36c545560cee5d57e84b729e8f851b3d1632
sha512=7586422e68779476206027c6ebbe19b677fbe459153221f7c952c7fae374c5c8232249cb76fdb1f482069707aa1580be827cd39693906142988268b7f0e7f6d0

doc/camomile.library/CamomileLibrary/ULine/index.html

Module CamomileLibrary.ULine

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 = sig ... end
module Make (Text : UnicodeString.Type) : Type with type text = Text.t
OCaml

Innovation. Community. Security.