We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efe3fba commit b14df8bCopy full SHA for b14df8b
runtime/stubs.js
@@ -30,10 +30,11 @@ function smallest_float(x) {
30
return 2.2250738585072014e-308;
31
}
32
33
-//Provides: ml_z_of_int
34
-//Requires: ml_z_of_int64, ml_z_to_int64
35
-function ml_z_of_int(x) {
36
- return ml_z_of_int64(ml_z_to_int64(x));
+//external of_int: int -> t
+//Provides: ml_z_of_int const
+//Requires: bigInt
+function ml_z_of_int(i) {
37
+ return i | 0;
38
39
40
//Provides: caml_thread_initialize const
0 commit comments