forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaml.js
194 lines (172 loc) · 2.74 KB
/
caml.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
'use strict';
function int_compare(x, y) {
if (x < y) {
return -1;
} else if (x === y) {
return 0;
} else {
return 1;
}
}
function bool_compare(x, y) {
if (x) {
if (y) {
return 0;
} else {
return 1;
}
} else if (y) {
return -1;
} else {
return 0;
}
}
function 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 string_compare(s1, s2) {
if (s1 === s2) {
return 0;
} else if (s1 < s2) {
return -1;
} else {
return 1;
}
}
function bool_min(x, y) {
if (x) {
return y;
} else {
return x;
}
}
function int_min(x, y) {
if (x < y) {
return x;
} else {
return y;
}
}
function float_min(x, y) {
if (x < y) {
return x;
} else {
return y;
}
}
function string_min(x, y) {
if (x < y) {
return x;
} else {
return y;
}
}
function bool_max(x, y) {
if (x) {
return x;
} else {
return y;
}
}
function int_max(x, y) {
if (x > y) {
return x;
} else {
return y;
}
}
function float_max(x, y) {
if (x > y) {
return x;
} else {
return y;
}
}
function string_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.int_compare = int_compare;
exports.bool_compare = bool_compare;
exports.float_compare = float_compare;
exports.string_compare = string_compare;
exports.bool_min = bool_min;
exports.int_min = int_min;
exports.float_min = float_min;
exports.string_min = string_min;
exports.bool_max = bool_max;
exports.int_max = int_max;
exports.float_max = float_max;
exports.string_max = string_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 */