package containers
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=0f70824867269c02bf01ae12206aa47a6f669d69f1954c19e68ece9f444f1cba
sha512=11de2d7b7173659e6b83c487ac116a93d4b780b86da07386e7604f8fd45f6841e93cba59dba59ed7dbf6e1bc26561202ae1d2e7238a12f588dfd557d4f2da589
doc/containers/CCChar/index.html
Module CCCharSource
Utils around char
Characters
An alias for the type of characters.
code c is the byte corresponding to c. If c is an ASCII character this corresponds to its encoding in ASCII or UTF-8.
Return the character with the given integer code.
Return a string representing the given character, with special characters escaped following the lexical conventions of OCaml. All characters outside the ASCII printable range [0x20;0x7E] are escaped, as well as backslash, double-quote, and single-quote.
Predicates and comparisons
See also the Ascii module.
ASCII characters
ASCII character set support.
Use the equivalent Ascii.lowercase instead.
Use the equivalent Ascii.uppercase instead.
Hashing
A seeded hash function for characters, with the same output value as Hashtbl.seeded_hash. This function allows this module to be passed as argument to the functor Hashtbl.MakeSeeded.
An unseeded hash function for characters, with the same output value as Hashtbl.hash. This function allows this module to be passed as argument to the functor Hashtbl.Make.
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.
Safe version of of_int_exn.
Renamed from print since 2.0.
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'.