CCCharUtils around char
val seeded_hash : int -> t -> intval hash : t -> intval of_int_exn : int -> tAlias to Char.chr. Return the character with the given ASCII code.
val of_int : int -> t optionSafe version of of_int_exn.
val to_int : t -> intAlias to Char.code. Return the ASCII code of the argument.
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