Module type Cf_unicode.Transcoding_T

module type Transcoding_T = sig .. end
The module type that results from the application of the C_create(E: Encoding_T) functor below. Modules of this type represent a transcoding from one Unicode encoding to another Unicode encoding.

module E: Cf_unicode.Encoding_T 
The encoding module used as the argument to the C_create(E: Encoding_T) functor.
val transcoder : (char Cf_seq.t option, char) Cf_flow.t
A transcoder flow. Use transcoder with the functions defined in the Cf_flow.Transcode module to transcode between Unicode encodings in in stages.
val transcode : char Cf_seq.t -> char Cf_seq.t
Use transcode i to convert a sequence of characters in the input encoding into a sequence of characters in the output encoding.
val atomic : string -> string
Use atomic str to convert a string in the input encoding into a string in the output encoding.