time-to-botec/squiggle/node_modules/@rescript/std/lib/es6/int32.js
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

76 lines
1.0 KiB
JavaScript

import * as Caml from "./caml.js";
import * as Caml_format from "./caml_format.js";
import * as Caml_js_exceptions from "./caml_js_exceptions.js";
function succ(n) {
return n + 1 | 0;
}
function pred(n) {
return n - 1 | 0;
}
function abs(n) {
if (n >= 0) {
return n;
} else {
return -n | 0;
}
}
function lognot(n) {
return n ^ -1;
}
function to_string(n) {
return Caml_format.format_int("%d", n);
}
function of_string_opt(s) {
try {
return Caml_format.int_of_string(s);
}
catch (raw_exn){
var exn = Caml_js_exceptions.internalToOCamlException(raw_exn);
if (exn.RE_EXN_ID === "Failure") {
return ;
}
throw exn;
}
}
var compare = Caml.int_compare;
function equal(x, y) {
return x === y;
}
var zero = 0;
var one = 1;
var minus_one = -1;
var max_int = 2147483647;
var min_int = -2147483648;
export {
zero ,
one ,
minus_one ,
succ ,
pred ,
abs ,
max_int ,
min_int ,
lognot ,
of_string_opt ,
to_string ,
compare ,
equal ,
}
/* No side effect */