-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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.isFinite missing #501
Comments
nim --eval:'import fenv; echo float.maximumPositiveValue' but maybe docs can improve cross-referencing also this doc comment seems not the best description:
|
OK, maybe I am wrong, but then why |
actually they're different:
I'd rather not introduce an alias, but I'm all in favor for cross-referencing, and explaining in doc comment the difference. |
I seen is important for end users to check if their float gone |
let's add found in lots of langs:
|
math
is missing the maximum representable finitefloat
that is not+Inf
(but math has the minimum).It is not the same as
+MinFloatNormal
.I dont know if this is correct:
People find this useful, to check that your float did not gone
Inf
.Other langs
The text was updated successfully, but these errors were encountered: