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