package camomile

  1. Overview
  2. Docs
A Unicode library

Install

Dune Dependency

Authors

Maintainers

Sources

v2.0.0.tar.gz
md5=41e02d124c3fa29ea511110d2c6532de
sha512=b0ae3d921f65390e8ec88a04901dd097b568db9f9ae70fb328e9d3ddb2dd8922b9a8e8da9ace91ad9cb5f6a1310ae5b6ba502e287d6c828f4d60622289316ac8

doc/camomile.lib/CamomileLib/OOChannel/index.html

Module CamomileLib.OOChannel

Object Oriented Channel

class type 'a obj_input_channel = object ... end

Generic input channel Have the same interface of Polymorphic input channel of http://www.ocaml-programming.de/rec/IO-Classes.html All channels of Camomile having this interface must confirm the behaviour defined in the recommendation above.

class type 'a obj_output_channel = object ... end

Generic output channel Have the same interface of Polymorphic output channel of http://www.ocaml-programming.de/rec/IO-Classes.html All channels of Camomile having this interface must confirm the behaviour defined in the recommendation above.

Convert stream to obj_input_channel

val stream_of_channel : 'a obj_input_channel -> 'a Stream.t

Convert obj_input_channel to stream

class type char_input_channel = object ... end

Character(byte) input channel. Have the same interface of octet input channel of http://www.ocaml-programming.de/rec/IO-Classes.html All channels of Camomile having this interface must confirm the behaviour defined in the recommendation above. In addition, all channels are assumed to be blocking. If you supply a non-blocking channel to Camomile API, the outcome is undefined.

class type char_output_channel = object ... end

Character(byte) output channel. Have the same interface of octet input channel of http://www.ocaml-programming.de/rec/IO-Classes.html All channels of Camomile having this interface must confirm the behaviour defined in the recommendation above. In addition, all channels are assumed to be blocking. If you supply a non-blocking channel to Camomile API, the outcome is undefined.

Convert a polymorphic input channel to a character input channel

Convert a character input channel to a polymorphic input channel

Convert a polymorphic output channel to a character output channel

Convert a character output channel to a polymorphic output channel

Convert an OCaml input channel to an OO-based character input channel

Convert an OCaml output channel to an OO-based character output channel

OCaml

Innovation. Community. Security.