@rescript/std
Version:
The motiviation of this repo is that when ReScript users want to share their library with JS users, the JS users don't need have ReScript toolchain installed, this makes sharing code with JS users easier (more details on that topic can be found in our [Ex
134 lines (111 loc) • 1.98 kB
JavaScript
import * as Caml from "./caml.js";
import * as Caml_format from "./caml_format.js";
function err_not_sv(i) {
return Caml_format.format_int("%X", i) + " is not an Unicode scalar value";
}
function err_not_latin1(u) {
return "U+" + (Caml_format.format_int("%04X", u) + " is not a latin1 character");
}
function succ(u) {
if (u === 55295) {
return 57344;
}
if (u === 1114111) {
throw {
RE_EXN_ID: "Invalid_argument",
_1: "U+10FFFF has no successor",
Error: new Error()
};
}
return u + 1 | 0;
}
function pred(u) {
if (u === 57344) {
return 55295;
}
if (u === 0) {
throw {
RE_EXN_ID: "Invalid_argument",
_1: "U+0000 has no predecessor",
Error: new Error()
};
}
return u - 1 | 0;
}
function is_valid(i) {
if (0 <= i && i <= 55295) {
return true;
} else if (57344 <= i) {
return i <= 1114111;
} else {
return false;
}
}
function of_int(i) {
if (is_valid(i)) {
return i;
}
var s = err_not_sv(i);
throw {
RE_EXN_ID: "Invalid_argument",
_1: s,
Error: new Error()
};
}
function is_char(u) {
return u < 256;
}
function of_char(c) {
return c;
}
function to_char(u) {
if (u <= 255) {
return u;
}
var s = err_not_latin1(u);
throw {
RE_EXN_ID: "Invalid_argument",
_1: s,
Error: new Error()
};
}
function unsafe_to_char(prim) {
return prim;
}
function equal(prim0, prim1) {
return prim0 === prim1;
}
var compare = Caml.int_compare;
function hash(prim) {
return prim;
}
var min = 0;
var max = 1114111;
var bom = 65279;
var rep = 65533;
function unsafe_of_int(prim) {
return prim;
}
function to_int(prim) {
return prim;
}
export {
min ,
max ,
bom ,
rep ,
succ ,
pred ,
is_valid ,
of_int ,
unsafe_of_int ,
to_int ,
is_char ,
of_char ,
to_char ,
unsafe_to_char ,
equal ,
compare ,
hash ,
}
/* No side effect */