package camomile

  1. Overview
  2. Docs
A comprehensive Unicode library

Install

Dune Dependency

Authors

Maintainers

Sources

rel-0.8.7.tar.gz
sha256=48a24e20960962b950c8a6846c7cfa17ccd665440627ff9ca01d21c2429ccaa4
md5=7727d76048d99a6ba157cddf2b4bb0ef

doc/camomile/OOChannel/index.html

Module OOChannelSource

Object Oriented Channel

Sourceclass 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.

Sourceclass 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

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

Convert obj_input_channel to stream

Sourceclass 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.

Sourceclass 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.