CCCharSourceUtils around char
val seeded_hash : int -> t -> intval hash : t -> intSafe version of of_int_exn.
is_uppercase_ascii c is true exactly when c is an uppercase ASCII character, i.e. '\064' < c < '\091'.
is_lowercase_ascii c is true exactly when c is a lowercase ASCII character, i.e. '\096' < c < '\123'.
is_letter_ascii c is true exactly when c is an ASCII letter, i.e. is_uppercase_ascii c || is_lowercase_ascii c.
is_digit_ascii c is true exactly when c is an ASCII digit, i.e. '\047' < c < '\058'.
is_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'.