Up

module StringPrep

: sig
#
module type Type = sig
#
type text
#
exception Prohibited of UChar.t
#
exception Bad_bidi
#
type profile = [
| `Nameprep
| `Nodeprep
| `Resourceprep
| `Saslprep
| `Trace
| `Iscsi
| `Mib
]
#
val stringprep : profile -> text -> text
end
#
module Make : functor (Config : ConfigInt.Type) -> functor (Text : UnicodeString.Type) -> Type with type text = Text.t
end