Value | Description |
val chr : int -> char |
Converts the value of the specified 32-bit signed integer to its equivalent Unicode character
|
val code : char -> int |
Converts the value of the specified Unicode character to the equivalent 32-bit signed integer
|
val compare : char -> char -> int |
Compares a and b and returns 1 if a > b, -1 if b < a and 0 if a = b
|
val lowercase : char -> char |
Converts the value of a Unicode character to its lowercase equivalent
|
val uppercase : char -> char |
Converts the value of a Unicode character to its uppercase equivalent
|