Module Stdlib.Nativeint
val div : nativeint -> nativeint -> nativeint
Integer division. Raise
Division_by_zero
if the second argument is zero. This division rounds the real quotient of its arguments towards zero, as specified forStdlib.(/)
.
val unsigned_div : nativeint -> nativeint -> nativeint
Same as
div
, except that arguments and result are interpreted as unsigned native integers.- since
- 4.08.0
val rem : nativeint -> nativeint -> nativeint
Integer remainder. If
y
is not zero, the result ofNativeint.rem x y
satisfies the following properties:Nativeint.zero <= Nativeint.rem x y < Nativeint.abs y
andx = Nativeint.add (Nativeint.mul (Nativeint.div x y) y) (Nativeint.rem x y)
. Ify = 0
,Nativeint.rem x y
raisesDivision_by_zero
.
val unsigned_rem : nativeint -> nativeint -> nativeint
Same as
rem
, except that arguments and result are interpreted as unsigned native integers.- since
- 4.08.0
val size : int
The size in bits of a native integer. This is equal to
32
on a 32-bit platform and to64
on a 64-bit platform.
val max_int : nativeint
The greatest representable native integer, either 231 - 1 on a 32-bit platform, or 263 - 1 on a 64-bit platform.
val min_int : nativeint
The smallest representable native integer, either -231 on a 32-bit platform, or -263 on a 64-bit platform.
val shift_left : nativeint -> int -> nativeint
Nativeint.shift_left x y
shiftsx
to the left byy
bits. The result is unspecified ify < 0
ory >= bitsize
, wherebitsize
is32
on a 32-bit platform and64
on a 64-bit platform.
val shift_right : nativeint -> int -> nativeint
Nativeint.shift_right x y
shiftsx
to the right byy
bits. This is an arithmetic shift: the sign bit ofx
is replicated and inserted in the vacated bits. The result is unspecified ify < 0
ory >= bitsize
.
val shift_right_logical : nativeint -> int -> nativeint
Nativeint.shift_right_logical x y
shiftsx
to the right byy
bits. This is a logical shift: zeroes are inserted in the vacated bits regardless of the sign ofx
. The result is unspecified ify < 0
ory >= bitsize
.
val of_int : int -> nativeint
Convert the given integer (type
int
) to a native integer (typenativeint
).
val to_int : nativeint -> int
Convert the given native integer (type
nativeint
) to an integer (typeint
). The high-order bit is lost during the conversion.
val unsigned_to_int : nativeint -> int option
Same as
to_int
, but interprets the argument as an unsigned integer. ReturnsNone
if the unsigned value of the argument cannot fit into anint
.- since
- 4.08.0
val of_float : float -> nativeint
Convert the given floating-point number to a native integer, discarding the fractional part (truncate towards 0). The result of the conversion is undefined if, after truncation, the number is outside the range [
Nativeint.min_int
,Nativeint.max_int
].
val to_int32 : nativeint -> int32
Convert the given native integer to a 32-bit integer (type
int32
). On 64-bit platforms, the 64-bit native integer is taken modulo 232, i.e. the top 32 bits are lost. On 32-bit platforms, the conversion is exact.
val of_string : string -> nativeint
Convert the given string to a native integer. The string is read in decimal (by default, or if the string begins with
0u
) or in hexadecimal, octal or binary if the string begins with0x
,0o
or0b
respectively.The
0u
prefix reads the input as an unsigned integer in the range[0, 2*Nativeint.max_int+1]
. If the input exceedsNativeint.max_int
it is converted to the signed integerInt64.min_int + input - Nativeint.max_int - 1
.Raise
Failure "Nativeint.of_string"
if the given string is not a valid representation of an integer, or if the integer represented exceeds the range of integers representable in typenativeint
.
val of_string_opt : string -> nativeint option
Same as
of_string
, but returnNone
instead of raising.- since
- 4.05
val compare : t -> t -> int
The comparison function for native integers, with the same specification as
Stdlib.compare
. Along with the typet
, this functioncompare
allows the moduleNativeint
to be passed as argument to the functorsSet.Make
andMap.Make
.