package orsetto

  1. Overview
  2. Docs
On This Page
  1. Interface
Legend:
Library
Module
Module type
Parameter
Class
Class type

Unicode Normalization Form

Interface
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 = [
  1. | `NFC
  2. | `NFD
  3. | `NFKC
  4. | `NFKD
]

Identifiers

val create : [< id ] -> (module Profile)

Use create e to select the normalization form identified by e.