orsetto.ucs
Ucs_normal
Unicode Normalization Form
orsetto.cbor
orsetto.cf
orsetto.json
module type Profile = sig ... end
The module type of normalization forms.
module NFC : Profile
The fully-composed canonical normal form.
module NFD : Profile
The fully-decomposed canonical normal form.
module NFKC : Profile
The fully-composed compatibility normal form.
module NFKD : Profile
The fully-decomposed compatibility normal form.
type id = [
| `NFC
| `NFD
| `NFKC
| `NFKD
]
Identifiers
val create : [< id ] -> (module Profile)
Use create e to select the normalization form identified by e.
create e
e