repl.txt (550B)
1 2 {{alias}}( x ) 3 Tests if a single-precision floating-point numeric value is finite. 4 5 Parameters 6 ---------- 7 x: number 8 Value to test. 9 10 Returns 11 ------- 12 bool: boolean 13 Boolean indicating whether the value is finite. 14 15 Examples 16 -------- 17 > var bool = {{alias}}( 5.0 ) 18 true 19 > bool = {{alias}}( -1.0e38 ) 20 true 21 > bool = {{alias}}( {{alias:@stdlib/constants/float32/pinf}} ) 22 false 23 > bool = {{alias}}( {{alias:@stdlib/constants/float32/ninf}} ) 24 false 25 26 See Also 27 -------- 28