We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Math.Int.maxMany
Math.Int.minMany
Math.maxMany
Math.minMany
Math.Int.maxMany([]) not returns an int. It's compile to Math.max() and returns -Infintiy. In JS Math.max([]) returns 0.
Math.Int.maxMany([])
Math.max()
-Infintiy
Math.max([])
0
let a = Math.Int.maxMany([]) Float.isFinite(a) // false
Math.Int.pow
This function has been deprecated for int. The return type may be not int, example pow(3, ~exp=-3) return a float
pow(3, ~exp=-3)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Math.Int.maxMany
,Math.Int.minMany
,Math.maxMany
andMath.minMany
variadic functionsMath.Int.maxMany([])
not returns an int. It's compile toMath.max()
and returns-Infintiy
. In JSMath.max([])
returns0
.Math.Int.pow
This function has been deprecated for int. The return type may be not int, example
pow(3, ~exp=-3)
return a floatThe text was updated successfully, but these errors were encountered: