You can search for identifiers within the package.
in-package search v0.2.0
metadata
Metadata.CharEncoding
Functions for handling charset conversion.
Charset conversion.
type recode = ?source:[ `ISO_8859_1 | `UTF_8 | `UTF_16 | `UTF_16LE | `UTF_16BE ] -> ?target:[ `UTF_8 | `UTF_16 | `UTF_16LE | `UTF_16BE ] -> string -> string
Type of functions for converting charset.
module type T = sig ... end
Type of modules for specifying charset conversion.
module Naive : T
Basic charset conversion. The conversion routine implemented in this module is not able to detect encoding. We recommend using a library such as camomile for a more complete solution.