math.POS_HUGE_VAL
FLOAT, read-only, constant.
Available inall subroutines.
A positive double constant expression, not necessarily representable as a FLOAT
.
Used as an error value returned by the VCL math library.
Because FLOAT
follows the IEEE 754 standard
for floating-point arithmetic, math.POS_HUGE_VAL
is equivalent to math.POS_INFINITY
.
Floating Point Classifications
Name | Value |
---|---|
math.is_finite | false |
math.is_infinite | true |
math.is_nan | false |
math.is_normal | false |
math.is_subnormal | false |
See the documentation on the FLOAT
type for details on these classifications.