Return true if x is neither infinity nor NaN.
Return true if the specified x is not an infinity value or NaN and false otherwise. Note that this is equivalent to classify(x) != FP_INFINITE && classify(x) != FP_NAN.
true if x is neither infinity nor NaN, and false otherwise
| Name | Description |
|---|---|
| x | value to classify |