module Char:sig
..end
Release 0.8.1 - Daniel Bünzli <daniel.buenzl i@erratique.ch>
typet =
char
val of_byte : int -> char
of_byte b
is a byte from b
.Invalid_argument
if b
is not in the range [0x00
;0xFF
].val of_int : int -> char option
of_int b
is a byte from b
. None
is returned if b
is not in the
range [0x00
;0xFF
].val to_int : char -> int
to_int b
is the byte b
as an integer.val hash : char -> int
hash
is Hashtbl.hash
.val equal : char -> char -> bool
equal b b'
is b = b'
.val compare : char -> char -> int
compare b b'
is Pervasives.compare
b b'
.module Ascii:sig
..end
val pp : Format.formatter -> char -> unit
pp ppf c
prints c
on ppf
.val dump : Format.formatter -> char -> unit