Skip to content

Commit 8b8981b

Browse files
committed
Add REPL text
1 parent 7f8161b commit 8b8981b

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+

lib/node_modules/@stdlib/assert/is-complex128/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
],
1616
"main": "./lib",
1717
"directories": {
18+
"doc": "./docs",
1819
"example": "./examples",
1920
"lib": "./lib",
2021
"test": "./test"

0 commit comments

Comments
 (0)