1Nativeint(3)                       OCamldoc                       Nativeint(3)
2
3
4

NAME

6       Nativeint - Processor-native integers.
7

Module

9       Module   Nativeint
10

Documentation

12       Module Nativeint
13        : sig end
14
15
16       Processor-native integers.
17
18       This  module provides operations on the type nativeint of signed 32-bit
19       integers (on 32-bit platforms) or signed  64-bit  integers  (on  64-bit
20       platforms).   This integer type has exactly the same width as that of a
21       pointer type  in  the  C  compiler.   All  arithmetic  operations  over
22       nativeint are taken modulo 2^{32 or 2^{64 depending on the word size of
23       the architecture.
24
25       Performance notice: values of type nativeint occupy more  memory  space
26       than  values  of  type int , and arithmetic operations on nativeint are
27       generally slower than those on int  .   Use  nativeint  only  when  the
28       application requires the extra bit of precision over the int type.
29
30
31
32
33
34
35       val zero : nativeint
36
37       The native integer 0.
38
39
40
41       val one : nativeint
42
43       The native integer 1.
44
45
46
47       val minus_one : nativeint
48
49       The native integer -1.
50
51
52
53       val neg : nativeint -> nativeint
54
55       Unary negation.
56
57
58
59       val add : nativeint -> nativeint -> nativeint
60
61       Addition.
62
63
64
65       val sub : nativeint -> nativeint -> nativeint
66
67       Subtraction.
68
69
70
71       val mul : nativeint -> nativeint -> nativeint
72
73       Multiplication.
74
75
76
77       val div : nativeint -> nativeint -> nativeint
78
79       Integer  division.   Raise  Division_by_zero  if the second argument is
80       zero.  This division rounds the real quotient of its arguments  towards
81       zero, as specified for Pervasives.(/) .
82
83
84
85       val rem : nativeint -> nativeint -> nativeint
86
87       Integer  remainder.   If y is not zero, the result of Nativeint.rem x y
88       satisfies the following properties: Nativeint.zero <= Nativeint.rem x y
89       < Nativeint.abs y and x = Nativeint.add (Nativeint.mul (Nativeint.div x
90       y) y) (Nativeint.rem x y) .  If y = 0 , Nativeint.rem x y raises  Divi‐
91       sion_by_zero .
92
93
94
95       val succ : nativeint -> nativeint
96
97       Successor.  Nativeint.succ x is Nativeint.add x Nativeint.one .
98
99
100
101       val pred : nativeint -> nativeint
102
103       Predecessor.  Nativeint.pred x is Nativeint.sub x Nativeint.one .
104
105
106
107       val abs : nativeint -> nativeint
108
109       Return the absolute value of its argument.
110
111
112
113       val size : int
114
115       The  size in bits of a native integer.  This is equal to 32 on a 32-bit
116       platform and to 64 on a 64-bit platform.
117
118
119
120       val max_int : nativeint
121
122       The greatest representable native integer, either 2^{31 - 1 on a 32-bit
123       platform, or 2^{63 - 1 on a 64-bit platform.
124
125
126
127       val min_int : nativeint
128
129       The  smallest  representable  native integer, either -2^{31 on a 32-bit
130       platform, or -2^{63 on a 64-bit platform.
131
132
133
134       val logand : nativeint -> nativeint -> nativeint
135
136       Bitwise logical and.
137
138
139
140       val logor : nativeint -> nativeint -> nativeint
141
142       Bitwise logical or.
143
144
145
146       val logxor : nativeint -> nativeint -> nativeint
147
148       Bitwise logical exclusive or.
149
150
151
152       val lognot : nativeint -> nativeint
153
154       Bitwise logical negation
155
156
157
158       val shift_left : nativeint -> int -> nativeint
159
160
161       Nativeint.shift_left x y shifts x to the left by y bits.  The result is
162       unspecified  if y < 0 or y >= bitsize , where bitsize is 32 on a 32-bit
163       platform and 64 on a 64-bit platform.
164
165
166
167       val shift_right : nativeint -> int -> nativeint
168
169
170       Nativeint.shift_right x y shifts x to the right by y bits.  This is  an
171       arithmetic  shift:  the sign bit of x is replicated and inserted in the
172       vacated bits.  The result is unspecified if y < 0 or y >= bitsize .
173
174
175
176       val shift_right_logical : nativeint -> int -> nativeint
177
178
179       Nativeint.shift_right_logical x y shifts x to  the  right  by  y  bits.
180       This  is  a  logical  shift:  zeroes  are  inserted in the vacated bits
181       regardless of the sign of x .  The result is unspecified if y < 0 or  y
182       >= bitsize .
183
184
185
186       val of_int : int -> nativeint
187
188       Convert  the  given  integer  (type  int  )  to  a native integer (type
189       nativeint ).
190
191
192
193       val to_int : nativeint -> int
194
195       Convert the given native integer (type nativeint ) to an integer  (type
196       int ).  The high-order bit is lost during the conversion.
197
198
199
200       val of_float : float -> nativeint
201
202       Convert the given floating-point number to a native integer, discarding
203       the fractional part (truncate towards 0).  The result of the conversion
204       is  undefined  if,  after truncation, the number is outside the range [
205       Nativeint.min_int , Nativeint.max_int ].
206
207
208
209       val to_float : nativeint -> float
210
211       Convert the given native integer to a floating-point number.
212
213
214
215       val of_int32 : int32 -> nativeint
216
217       Convert the given 32-bit integer (type int32 ) to a native integer.
218
219
220
221       val to_int32 : nativeint -> int32
222
223       Convert the given native integer to a 32-bit integer (type int32 ).  On
224       64-bit platforms, the 64-bit native integer is taken modulo 2^{32, i.e.
225       the top 32 bits are lost.   On  32-bit  platforms,  the  conversion  is
226       exact.
227
228
229
230       val of_string : string -> nativeint
231
232       Convert  the  given  string to a native integer.  The string is read in
233       decimal (by default) or in hexadecimal, octal or binary if  the  string
234       begins with 0x , 0o or 0b respectively.  Raise Failure int_of_string if
235       the given string is not a valid representation of an integer, or if the
236       integer represented exceeds the range of integers representable in type
237       nativeint .
238
239
240
241       val of_string_opt : string -> nativeint option
242
243       Same as of_string , but return None instead of raising.
244
245
246       Since 4.05
247
248
249
250       val to_string : nativeint -> string
251
252       Return the string representation of its argument, in decimal.
253
254
255       type t = nativeint
256
257
258       An alias for the type of native integers.
259
260
261
262       val compare : t -> t -> int
263
264       The comparison function for native integers, with the  same  specifica‐
265       tion  as  Pervasives.compare  .   Along with the type t , this function
266       compare allows the module Nativeint to be passed  as  argument  to  the
267       functors Set.Make and Map.Make .
268
269
270
271       val equal : t -> t -> bool
272
273       The equal function for native ints.
274
275
276       Since 4.03.0
277
278
279
280
281
2822018-04-14                          source:                       Nativeint(3)
Impressum