This OCaml library provides integer types having specified widths.
It provides the following unsigned integer types:
and the following list of signed integer types:
There is a module for every integer type that implements the Int interface. This interface is similar to Int32 and Int64 from the base library but provides more functions and constants like
The library also comes with C header files that allow easy access to the integer values in C bindings. The functions are modeled on base of the int32 and int64 access functions provided by the base library. The semantics of all operations is identical to the Int32, Int64 modules, C, C++, Java etc.: Conversion will silently truncate larger values as will other operations leading to overflowing integer values.
The API of stdint can be found online at the OCaml forge.
To use the integer types, we recommend to open Stdint
but not the individual modules:
open Stdint
let _ =
let a = Uint8.of_int 21 in
let x = Uint8.(a * (one + one)) in
print_endline (Uint8.to_string x)
The 128 bit integer types are currently only available on 64 bit platforms; the compatibility layer for 32 bit platforms is not yet fully implemented and will raise Failure
for several functions.
The representation of integers depends on their size:
int
. They are left-aligned so that most arithmetic operations are just the same as the ones on normal integers. The standard OCaml integer type is 31 bit on 32 bit machines and 63 bit on 64 bit machines. Operations like addition and division require an extra shift; others like xor require an additional mask to keep the unused bits (at the right) at 0
.int
, too. They are right-aligned making most arithmetic operations compatible to standard integer operations. Operations like addition require an additional mask operation to keep the unused bits (at the left) at 0
.uint32
and uint64
have their custom in-memory representation implemented in Cint64
are stored in the latter. The requirements are otherwise identical to small signed integers store in the standard integer.uint64
are stored in the latter. The requirements are otherwise identical to small unsigned integers store in the standard integer.The stdint library is written by Andre Nathan, Jeff Shaw, Markus Weissmann and Florian Pichlmeier. It is based on the ocaml-uint library.
The source-code of stdint is available under the MIT license.