C | |
compare [Uchar] | compare u u' is Pervasives.compare u u' .
|
D | |
dump [Uchar] | dump ppf u prints a representation of u on ppf using
only US-ASCII encoded characters according to the Unicode
notational
convention for code points.
|
E | |
equal [Uchar] | equal u u' is u = u' .
|
H | |
hash [Uchar] | hash u associates a non negative integer to u .
|
I | |
is_char [Uchar] | is_char u is true iff u is a latin1 OCaml character.
|
is_valid [Uchar] | is_valid n is true iff n is an Unicode scalar value
(i.e.
|
M | |
max [Uchar] | max is U+10FFFF.
|
min [Uchar] | min is U+0000.
|
O | |
of_char [Uchar] | of_char c is c as an Unicode character.
|
of_int [Uchar] | of_int i is i as an Unicode character.
|
P | |
pred [Uchar] | pred u is the scalar value before u in the set of Unicode scalar
values.
|
S | |
succ [Uchar] | succ u is the scalar value after u in the set of Unicode scalar
values.
|
T | |
to_char [Uchar] | to_char u is u as an OCaml latin1 character.
|
to_int [Uchar] | to_int u is u as an integer.
|