Astring.Char
Characters (bytes in fact).
of_int b
is a byte from b
. None
is returned if b
is not in the range [0x00
;0xFF
].
compare b b'
is Stdlib.compare
b b'
.
module Ascii : sig ... end
US-ASCII character support
val pp : Format.formatter -> char -> unit
pp ppf c
prints c
on ppf
.
val dump : Format.formatter -> char -> unit
dump ppf c
prints c
as a syntactically valid OCaml char on ppf
using Ascii.escape_char