Module Unsigned
Types and operations for unsigned integers.
module type S = sig ... endUnsigned integer operations.
module UInt32 : sig ... endUnsigned 32-bit integer type and operations.
module UInt64 : sig ... endUnsigned 64-bit integer type and operations.
type uchar= UChar.tThe unsigned char type.
type uint8= UInt8.tUnsigned 8-bit integer type.
type uint16= UInt16.tUnsigned 16-bit integer type.
type uint32= UInt32.tUnsigned 32-bit integer type.
type uint64= UInt64.tUnsigned 64-bit integer type.
type size_t= Size_t.tThe size_t unsigned integer type.
type ushort= UShort.tThe unsigned short unsigned integer type.
type uint= UInt.tThe unsigned int type.
type ulong= ULong.tThe unsigned long integer type.
type ullong= ULLong.tThe unsigned long long integer type.
val of_byte_size : int -> (module S)of_byte_size bis a module of type S that implements an unsigned type withbbytes.Raise
Invalid_argumentif no suitable type is available.