{{alias}}( x ) Tests if a single-precision floating-point numeric value is finite. Parameters ---------- x: number Value to test. Returns ------- bool: boolean Boolean indicating whether the value is finite. Examples -------- > var bool = {{alias}}( 5.0 ) true > bool = {{alias}}( -1.0e38 ) true > bool = {{alias}}( {{alias:@stdlib/constants/float32/pinf}} ) false > bool = {{alias}}( {{alias:@stdlib/constants/float32/ninf}} ) false See Also --------