Module Signed
Types and operations for signed integers.
module type S = sig ... end
Signed integer operations
type sint
= SInt.t
C's signed integer type.
type long
= Long.t
The signed long integer type.
type llong
= LLong.t
The signed long long integer type.
val of_byte_size : int -> (module S)
of_byte_size b
is a module of type S that implements a signed type withb
bytes.Raise
Invalid_argument
if no suitable type is available.