rescript
Version:
213 lines (188 loc) • 3.25 kB
JavaScript
'use strict';
function caml_int_compare(x, y) {
if (x < y) {
return -1;
} else if (x === y) {
return 0;
} else {
return 1;
}
}
function caml_bool_compare(x, y) {
if (x) {
if (y) {
return 0;
} else {
return 1;
}
} else if (y) {
return -1;
} else {
return 0;
}
}
function caml_float_compare(x, y) {
if (x === y) {
return 0;
} else if (x < y) {
return -1;
} else if (x > y || x === x) {
return 1;
} else if (y === y) {
return -1;
} else {
return 0;
}
}
function caml_string_compare(s1, s2) {
if (s1 === s2) {
return 0;
} else if (s1 < s2) {
return -1;
} else {
return 1;
}
}
function caml_bool_min(x, y) {
if (x) {
return y;
} else {
return x;
}
}
function caml_int_min(x, y) {
if (x < y) {
return x;
} else {
return y;
}
}
function caml_float_min(x, y) {
if (x < y) {
return x;
} else {
return y;
}
}
function caml_string_min(x, y) {
if (x < y) {
return x;
} else {
return y;
}
}
function caml_int32_min(x, y) {
if (x < y) {
return x;
} else {
return y;
}
}
function caml_bool_max(x, y) {
if (x) {
return x;
} else {
return y;
}
}
function caml_int_max(x, y) {
if (x > y) {
return x;
} else {
return y;
}
}
function caml_float_max(x, y) {
if (x > y) {
return x;
} else {
return y;
}
}
function caml_string_max(x, y) {
if (x > y) {
return x;
} else {
return y;
}
}
function caml_int32_max(x, y) {
if (x > y) {
return x;
} else {
return y;
}
}
function i64_eq(x, y) {
if (x[1] === y[1]) {
return x[0] === y[0];
} else {
return false;
}
}
function i64_ge(param, param$1) {
var other_hi = param$1[0];
var hi = param[0];
if (hi > other_hi) {
return true;
} else if (hi < other_hi) {
return false;
} else {
return param[1] >= param$1[1];
}
}
function i64_neq(x, y) {
return !i64_eq(x, y);
}
function i64_lt(x, y) {
return !i64_ge(x, y);
}
function i64_gt(x, y) {
if (x[0] > y[0]) {
return true;
} else if (x[0] < y[0]) {
return false;
} else {
return x[1] > y[1];
}
}
function i64_le(x, y) {
return !i64_gt(x, y);
}
function i64_min(x, y) {
if (i64_ge(x, y)) {
return y;
} else {
return x;
}
}
function i64_max(x, y) {
if (i64_gt(x, y)) {
return x;
} else {
return y;
}
}
exports.caml_int_compare = caml_int_compare;
exports.caml_bool_compare = caml_bool_compare;
exports.caml_float_compare = caml_float_compare;
exports.caml_string_compare = caml_string_compare;
exports.caml_bool_min = caml_bool_min;
exports.caml_int_min = caml_int_min;
exports.caml_float_min = caml_float_min;
exports.caml_string_min = caml_string_min;
exports.caml_int32_min = caml_int32_min;
exports.caml_bool_max = caml_bool_max;
exports.caml_int_max = caml_int_max;
exports.caml_float_max = caml_float_max;
exports.caml_string_max = caml_string_max;
exports.caml_int32_max = caml_int32_max;
exports.i64_eq = i64_eq;
exports.i64_neq = i64_neq;
exports.i64_lt = i64_lt;
exports.i64_gt = i64_gt;
exports.i64_le = i64_le;
exports.i64_ge = i64_ge;
exports.i64_min = i64_min;
exports.i64_max = i64_max;
/* No side effect */