module UCharImpl:sig..end
One is advised to use the Utils.UChar module instead of this one.
type t
type error =
| |
Unrepresentable_character of |
| |
Invalid_character_code of |
exception Exception of error
val string_of_error : error -> stringval of_char : char -> tval to_char : t -> charException if conversion fails.val to_char_noerr : t -> charto_char, except that any exception is discarded and
'?' is returned.val of_code : int -> tException if conversion fails.val to_code : t -> intException if conversion fails.val equal : t -> t -> boolval compare : t -> t -> intval hash : t -> intval is_letter : t -> boolval is_digit : t -> boolval is_letter_or_digit : t -> boolval is_space : t -> bool