File tree 2 files changed +29
-0
lines changed
lib/node_modules/@stdlib/assert/is-complex128
2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ {{alias}}( value )
3
+ Tests if a value is a 128-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 128-bit complex number.
14
+
15
+ Examples
16
+ --------
17
+ > var bool = {{alias}}( {{alias:@stdlib/complex/float64}}( 3.0, 1.0 ) )
18
+ true
19
+ > bool = {{alias}}( {{alias:@stdlib/complex/float32}}( 2.0, 2.0 ) )
20
+ false
21
+ > bool = {{alias}}( 3.14 )
22
+ false
23
+ > bool = {{alias}}( {} )
24
+ false
25
+
26
+ See Also
27
+ --------
28
+
Original file line number Diff line number Diff line change 15
15
],
16
16
"main" : " ./lib" ,
17
17
"directories" : {
18
+ "doc" : " ./docs" ,
18
19
"example" : " ./examples" ,
19
20
"lib" : " ./lib" ,
20
21
"test" : " ./test"
You can’t perform that action at this time.
0 commit comments