### `Math.Int.maxMany`, `Math.Int.minMany`, `Math.maxMany` and `Math.minMany` variadic functions `Math.Int.maxMany([])` not returns an int. It's compile to `Math.max()` and returns `-Infintiy`. In JS `Math.max([])` returns `0`. ```rescript let a = Math.Int.maxMany([]) Float.isFinite(a) // false ``` ### `Math.Int.pow` This function has been [deprecated](https://github.com/rescript-lang/rescript-compiler/blob/master/jscomp/others/js_math.ml#L499) for int. The return type may be not int, example `pow(3, ~exp=-3)` return a float