; &"55.5.0+dev0-2025-04-28/)Nativeint$zero)nativeint<@@@@:../../stdlib/nativeint.mlihh@@)Nativeint@@@#one=@@@@kk@@A@@)minus_one>@@@@n--n-F@@B@@#neg@/?@@@4@@@@@@.%nativeint_negAA @@@8qee9qe@@7C@@#add@IA@@@@PB@@@UC@@@@@@@.%nativeint_addBA!@@@@YtZt@@XD@@#sub@jD@@@@qE@@@vF@@@@@@@.%nativeint_subBAB@@@@zw  {w  S@@yE@@#mul@G@@@@H@@@I@@@@@@@.%nativeint_mulBAc@@@@z i iz i @@F@@#div@J@@@@K@@@L@@@@@@@.%nativeint_divBA@@@@}  }  @@G@@,unsigned_div@M@@@@N@@@O@@@@@@@@D  D  @@H@@#rem@P@@@@Q@@@R@@@@@@@.%nativeint_modBA@@@@J  J  @@I@@,unsigned_rem@ S@@@@T@@@U@@@@@@@@R ) )R ) _@@J@@$succ@&V@@@+W@@@@@@*X  +X @@)K@@$pred@;X@@@@Y@@@@@@?\NN@\No@@>L@@#abs@PZ@@@U[@@@@@@T`U`@@SM@@$size #int\@@@@cdRRddR`@@bN@@'max_int!r]@@@@qhrh@@pO@@'min_int"^@@@@m}}m}@@~P@@&logand#@_@@@@`@@@a@@@@@@@ؐ.%nativeint_andBAh@@@@rr\@@Q@@%logor$@b@@@@c@@@d@@@@@@@ݐ-%nativeint_orBA@@@@uzzuz@@R@@&logxor%@e@@@@f@@@g@@@@@@@.%nativeint_xorBA@@@@xx%@@S@@&lognot&@h@@@i@@@@@@{LL{Lo@@T@@*shift_left'@j@@@@k@@@l@@@@@@@.%nativeint_lslBA@@@@~~@@U@@+shift_right(@)m@@@@n@@@5o@@@@@@@.%nativeint_asrBA@@@@9:@@8V@@3shift_right_logical)@Jp@@@@q@@@Vr@@@@@@@.%nativeint_lsrBA"@@@@Z[1@@YW@@&of_int*@s@@@pt@@@@@1%nativeint_of_intAA<@@@s((t(`@@rX@@&to_int+@u@@@&v@@@@@1%nativeint_to_intAAU@@@@@Y@@/unsigned_to_int,@w@@@&optionLEx@@@@@@@@@@@Z@@(of_float-@%floaty@@@z@@@@@7caml_nativeint_of_floatA@?caml_nativeint_of_float_unboxedA@@nn@'unboxed@@@'noalloc@@@@[@@(to_float.@{@@@6|@@@@@7caml_nativeint_to_floatA@?caml_nativeint_to_float_unboxed0@A55@'unboxed@@@'noalloc@@ @@\@@(of_int32/@%int32}@@@~@@@@@3%nativeint_of_int32AA@@@"#9@@!]@@(to_int320@3@@@ @@@ @@ 3%nativeint_to_int32AA@@@;<@@:^@@)of_string1@&string@@@ R@@@ @@8caml_nativeint_of_stringAA@@@UV@@T_@@-of_string_opt2@@@@ɠo@@@@@@@@@op@@n`@@)to_string3@@@@9@@@@@@    7@@a@@!t4A;@@@A@@@@@@@ ~ ~ ~ @@@@b@A@'compare5@)Nativeint!t@@@@)Nativeint!t@@@ T@@@!@@"@@#@    @@c@@0unsigned_compare6@)Nativeint!t@@@$@)Nativeint!t@@@%v@@@&@@'@@(@!!!" @@d@@%equal7@)Nativeint!t@@@)@)Nativeint!t@@@*$bool@@@+@@,@@-@""""@@e@@#min8@)Nativeint!t@@@.@)Nativeint!t@@@/)Nativeint!t@@@0@@1@@2@ ""!""@@f@@#max9@)Nativeint!t@@@3@)Nativeint!t@@@4)Nativeint!t@@@5@@6@@7@E#/#/F#/#C@@Dg@@+seeded_hash:@@@@8@)Nativeint!t@@@9@@@:@@;@@<@d##e##@@ch@@$hash;@)Nativeint!t@@@=@@@>@@?@|$$}$$@@{i@@@3:Processor-native integers.@ 0 This module provides operations on the type )nativeint of signed 32-bit integers (on 32-bit platforms) or signed 64-bit integers (on 64-bit platforms). This integer type has exactly the same width as that of a pointer type in the C compiler. All arithmetic operations over )nativeint3 are taken modulo 2"32@% or 2"64@ 3 depending on the word size of the architecture.@ ' Performance notice: values of type )nativeint 1 occupy more memory space than values of type #int ", and arithmetic operations on )nativeint $ are generally slower than those on #int'. Use )nativeint N only when the application requires the extra bit of precision over the #int& type.@ 9 Literals for native integers are suffixed by n: ` let zero: nativeint = 0n let one: nativeint = 1n let m_one: nativeint = -1n @@@@@@@@@@@@A:../../stdlib/nativeint.mli.Nativeint.zero35The native integer 0.@@@@@@@@@@@@@@@@㠕-Nativeint.one35The native integer 1.@@@@@@@@@@@@@@@@ߠ3Nativeint.minus_one36The native integer -1.@@@@@@@@@@@@@@@@ݠ-Nativeint.neg3/Unary negation.@@@@@@@@@@@@@ @@@@Ӡ-Nativeint.add3)Addition.@@@@@@@@@@@@@@@@@@Ġ-Nativeint.sub3,Subtraction.@@@@@@@@@@@@@"@%@@@@-Nativeint.mul3/Multiplication.@@@@@@@@@@@@@4@7@@@@-Nativeint.div3 lInteger division. This division rounds the real quotient of its arguments towards zero, as specified for *Stdlib.(/)@@!.@@@@@@@@0Division_by_zero "if the second argument is zero.@@@@@@R@U@@@@6Nativeint.unsigned_div3(Same as 'D@ 6, except that arguments and result are interpreted as , unsigned@1 native integers.@@@@$4.08@@@@@@@@t@w@@@@-Nativeint.rem37Integer remainder. If !y? is not zero, the result of 1Nativeint.rem x y ( satisfies the following properties: 5Nativeint.zero <= Nativeint.rem x y < Nativeint.abs y( and ax = Nativeint.add (Nativeint.mul (Nativeint.div x y) y) (Nativeint.rem x y)(. If %y = 0", 1Nativeint.rem x y( raises 0Division_by_zero!.@@@@@@@@@@@@@@@@@@Ġ6Nativeint.unsigned_rem3(Same as ED@ 6, except that arguments and result are interpreted as , unsigned@1 native integers.@@@@$4.08@@@@@@@@@@@@@ʠ.Nativeint.succ3.Successor. 0Nativeint.succ x$ is =Nativeint.add x Nativeint.one!.@@@@@@@@@@@@@@@@@Р.Nativeint.pred30Predecessor. 0Nativeint.pred x$ is =Nativeint.sub x Nativeint.one!.@@@@@@@@@@@@@ @@@@֠-Nativeint.abs3%abs x: is the absolute value of !x%. On 'min_int, this is 'min_int " itself and thus remains negative.@@@@@@@@@@@@@/@@@@堕.Nativeint.size3 8The size in bits of a native integer. This is equal to "32 on a 32-bit platform and to "646 on a 64-bit platform.@@@@@@@@@@@@@@@@1Nativeint.max_int3 6The greatest representable native integer, either 2"31@ " - 1 on a 32-bit platform, or 2"63@: - 1 on a 64-bit platform.@@@@@@@@@@@@@@@@1Nativeint.min_int3 7The smallest representable native integer, either -2"31@? on a 32-bit platform, or -2"63@6 on a 64-bit platform.@@@@@@@@@@@@ @@@@ 0Nativeint.logand34Bitwise logical and.@@@@@@@@@@@@ @ @@@@@/Nativeint.logor33Bitwise logical or.@@@@@@@@@@@@@@@@@@정0Nativeint.logxor3=Bitwise logical exclusive or.@@@@@@@@@@@@@@@@@@ݠ0Nativeint.lognot39Bitwise logical negation.@@@@@@@@@@@@@@@@@נ4Nativeint.shift_left38Nativeint.shift_left x y( shifts !x0 to the left by !y ' bits. The result is unspecified if %y < 0$ or ,y >= bitsize+, where 'bitsize$ is "32= on a 32-bit platform and "646 on a 64-bit platform.@@@@@@@@@@@@@@@@@@5Nativeint.shift_right39Nativeint.shift_right x y( shifts !x1 to the right by !y 7 bits. This is an arithmetic shift: the sign bit of !x T is replicated and inserted in the vacated bits. The result is unspecified if %y < 0$ or ,y >= bitsize!.@@@@@@@@@@@@@3@6@@@@=Nativeint.shift_right_logical3 !Nativeint.shift_right_logical x y( shifts !x4 to the right by !y h bits. This is a logical shift: zeroes are inserted in the vacated bits regardless of the sign of !x ". The result is unspecified if %y < 0$ or ,y >= bitsize!.@@@@@@@@@@@@)@f*@i&@@@@0Nativeint.of_int3 Convert the given integer (type #int?) to a native integer (type )nativeint").@@@@@@@@@@@@&@'@@@@0Nativeint.to_int3 'Convert the given native integer (type )nativeint9) to an integer (type #int 8). The high-order bit is lost during the conversion.@@@@@@@@@@@@(@)@@@@9Nativeint.unsigned_to_int3(Same as $D@ $, but interprets the argument as an (unsigned@6 integer. Returns $None > if the unsigned value of the argument cannot fit into an #int!.@@@@$4.08@@@@@@@:@;@@@@,2Nativeint.of_float3 Convert the given floating-point number to a native integer, discarding the fractional part (truncate towards 0). If the truncated floating-point number is outside the range [pD@", D@ Y], no exception is raised, and an unspecified, platform-dependent integer is returned.@@@@@@@@@@@@9@:@@@@+2Nativeint.to_float3 Convert the given native integer to a 32-bit integer (type %int32 G). On 64-bit platforms, the 64-bit native integer is taken modulo 2"32@ U, i.e. the top 32 bits are lost. On 32-bit platforms, the conversion is exact.@@@@@@@@@@@@@&@@@@3Nativeint.of_string3 |Convert the given string to a native integer. The string is read in decimal (by default, or if the string begins with "0u B) or in hexadecimal, octal or binary if the string begins with "0x", "0o$ or "0b. respectively.@( The "0u ? prefix reads the input as an unsigned integer in the range :[0, 2*Nativeint.max_int+1]8. If the input exceeds D@ - it is converted to the signed integer -Int64.min_int + input - Nativeint.max_int - 1!.@@@@@@@@'Failure if the given string is not a valid representation of an integer, or if the integer represented exceeds the range of integers representable in type )nativeint!.@@@@@6@u7@@@@*7Nativeint.of_string_opt3(Same as )of_string-, but return $None4 instead of raising.@@@@$4.05@@@@@@@9@:@@@@-3Nativeint.to_string3 =Return the string representation of its argument, in decimal.@@@@@@@@@@@@.@/@@@@'#+Nativeint.t3 )An alias for the type of native integers.@@@@@@@@@@@@@@A(@%$@@1Nativeint.compare3 PThe comparison function for native integers, with the same specification as .Stdlib.compare@@7. Along with the type !t0, this function 'compare7 allows the module )Nativeint . to be passed as argument to the functors (Set.Make@@% and (Map.Make@@!.@@@@@@@@@@@@K@L@E@@@@::Nativeint.unsigned_compare3(Same as ?D@ +, except that arguments are interpreted as (unsigned@5 native integers.@@@@$4.08@@@@@@@K@L@E@@@@:/Nativeint.equal3 #The equal function for native ints.@@@@$4.03@@@@@@@=@>@7@@@@+-Nativeint.min3 (Return the smaller of the two arguments.@@@@$4.13@@@@@@@.@-/@0(@@@@-Nativeint.max3 (Return the greater of the two arguments.@@@@$4.13@@@@@@@@A@D@@@@ 5Nativeint.seeded_hash3 JA seeded hash function for native ints, with the same output value as 3Hashtbl.seeded_hash@@ O. This function allows this module to be passed as argument to the functor 2Hashtbl.MakeSeeded@@!.@@@@#5.1@@@@@@@@a@d@@@@ .Nativeint.hash3 MAn unseeded hash function for native ints, with the same output value as ,Hashtbl.hash@@ O. This function allows this module to be passed as argument to the functor ,Hashtbl.Make@@!.@@@@#5.1@@@@@@@@@@@@@@@@A@@@@@