forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaml_primitive.js
170 lines (150 loc) · 2.65 KB
/
caml_primitive.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
'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_nativeint_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_nativeint_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;
}
}
var caml_nativeint_compare = caml_int_compare;
var caml_int32_compare = caml_int_compare;
exports.caml_int_compare = caml_int_compare;
exports.caml_bool_compare = caml_bool_compare;
exports.caml_float_compare = caml_float_compare;
exports.caml_nativeint_compare = caml_nativeint_compare;
exports.caml_string_compare = caml_string_compare;
exports.caml_int32_compare = caml_int32_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_nativeint_min = caml_nativeint_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_nativeint_max = caml_nativeint_max;
exports.caml_int32_max = caml_int32_max;
/* No side effect */