Return true if number is finite.
Declared in <bdlb_float.h>
static
bool
isFinite(float number);
A finite value is normal, subnormal, or zero; the result is false if number is infinite or NaN. This function is equivalent to the isfinite macro in C99.
true if number is finite, and false otherwise
| Name | Description |
|---|---|
| number | floating-point value to test |