package camomile
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=f0a419b0affc36500f83b086ffaa36c545560cee5d57e84b729e8f851b3d1632
sha512=7586422e68779476206027c6ebbe19b677fbe459153221f7c952c7fae374c5c8232249cb76fdb1f482069707aa1580be827cd39693906142988268b7f0e7f6d0
doc/camomile.library/CamomileLibrary/OOChannel/index.html
Module CamomileLibrary.OOChannel
Individual modules
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.
class 'a channel_of_stream : 'a Stream.t -> 'a obj_input_channel
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.
class char_input_channel_of : char obj_input_channel -> char_input_channel
Convert a polymorphic input channel to a character input channel
class char_obj_input_channel_of : char_input_channel -> char obj_input_channel
Convert a character input channel to a polymorphic input channel
class char_output_channel_of : char obj_output_channel -> char_output_channel
Convert a polymorphic output channel to a character output channel
class char_obj_output_channel_of : char_output_channel -> char obj_output_channel
Convert a character output channel to a polymorphic output channel
class of_in_channel : Pervasives.in_channel -> char_input_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