repl.txt (562B)
1 2 {{alias}}( value ) 3 Tests if a value is a 64-bit complex number. 4 5 Parameters 6 ---------- 7 value: any 8 Value to test. 9 10 Returns 11 ------- 12 bool: boolean 13 Boolean indicating whether a value is a 64-bit complex number. 14 15 Examples 16 -------- 17 > var bool = {{alias}}( new {{alias:@stdlib/complex/float32}}( 2.0, 2.0 ) ) 18 true 19 > bool = {{alias}}( new {{alias:@stdlib/complex/float64}}( 3.0, 1.0 ) ) 20 false 21 > bool = {{alias}}( 3.14 ) 22 false 23 > bool = {{alias}}( {} ) 24 false 25 26 See Also 27 -------- 28