package ctypes
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=af968e9f47071574c08387d8701160543288c2f85f57ac8085807b2d6bd1368f
md5=846f9ce0638e9a2046a4771a4c47c2d8
doc/ctypes/Unsigned/UInt32/index.html
Module Unsigned.UInt32
Unsigned 32-bit integer type and operations.
include S
Division. Raise Division_by_zero
if the second argument is zero.
Integer remainder. Raise Division_by_zero
if the second argument is zero.
val max_int : t
The greatest representable integer.
shift_left
x
y
shifts x
to the left by y
bits.
shift_right
x
y
shifts x
to the right by y
bits.
val of_int : int -> t
Convert the given int value to an unsigned integer.
val to_int : t -> int
Convert the given unsigned integer value to an int.
val of_int64 : int64 -> t
Convert the given int64 value to an unsigned integer.
val to_int64 : t -> int64
Convert the given unsigned integer value to an int64.
val of_string : string -> t
Convert the given string to an unsigned integer. Raise Failure
"int_of_string"
if the given string is not a valid representation of an unsigned integer.
val to_string : t -> string
Return the string representation of its argument.
val zero : t
The integer 0.
val one : t
The integer 1.
The comparison function for unsigned integers, with the same specification as Pervasives.compare
.
module Infix : sig ... end
Infix names for the unsigned integer operations.
val of_int32 : int32 -> t
val to_int32 : t -> int32