CCCharUtils around char
Return a string representing the given character, with special characters escaped following the lexical conventions of OCaml. All characters outside the ASCII printable range (32..126) are escaped, as well as backslash, double-quote, and single-quote.
Convert the given character to its equivalent lowercase character, using the ISO Latin-1 (8859-1) character set.
Convert the given character to its equivalent uppercase character, using the ISO Latin-1 (8859-1) character set.
Convert the given character to its equivalent lowercase character, using the US-ASCII character set.
Convert the given character to its equivalent uppercase character, using the US-ASCII character set.
The comparison function for characters, with the same specification as Stdlib.compare. Along with the type t, this function compare allows the module Char to be passed as argument to the functors Set.Make and Map.Make.
val of_int : int -> t optionSafe version of of_int_exn.
val to_string : t -> stringto_string c returns a string containing c
val pp : Format.formatter -> t -> unitRenamed from print since 2.0.
val is_uppercase_ascii : t -> boolis_uppercase_ascii c is true exactly when c is an uppercase ASCII character, i.e. '\064' < c < '\091'.
val is_lowercase_ascii : t -> boolis_lowercase_ascii c is true exactly when c is a lowercase ASCII character, i.e. '\096' < c < '\123'.
val is_letter_ascii : t -> boolis_letter_ascii c is true exactly when c is an ASCII letter, i.e. is_uppercase_ascii c || is_lowercase_ascii c.
val is_digit_ascii : t -> boolis_digit_ascii c is true exactly when c is an ASCII digit, i.e. '\047' < c < '\058'.
val is_whitespace_ascii : t -> boolis_whitespace_ascii c is true exactly when c is an ASCII whitespace character as defined by Unicode, i.e. either c = ' ' or '\008' < c < '\014'.
module Infix : sig ... end