Skip to content

Commit 038b199

Browse files
committed
docs: update paths
1 parent 866b939 commit 038b199

File tree

48 files changed

+66
-66
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+66
-66
lines changed

lib/node_modules/@stdlib/array/base/accessor-setter/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
--------
4848
> var f = {{alias}}( 'complex64' );
4949
> var x = {{alias:@stdlib/array/complex64}}( [ 1, 2, 3, 4 ] );
50-
> f( x, 1, new {{alias:@stdlib/complex/float32}}( 10.0, 11.0 ) );
50+
> f( x, 1, new {{alias:@stdlib/complex/float32/ctor}}( 10.0, 11.0 ) );
5151
> var v = x.get( 1 )
5252
<Complex64>
5353
> var r = {{alias:@stdlib/complex/realf}}( v )

lib/node_modules/@stdlib/assert/is-complex-like/docs/repl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
Examples
1616
--------
17-
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32}}( 2.0, 2.0 ) )
17+
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 2.0, 2.0 ) )
1818
true
19-
> bool = {{alias}}( new {{alias:@stdlib/complex/float64}}( 3.0, 1.0 ) )
19+
> bool = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 3.0, 1.0 ) )
2020
true
2121
> bool = {{alias}}( 3.14 )
2222
false

lib/node_modules/@stdlib/assert/is-complex/docs/repl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616
Examples
1717
--------
18-
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32}}( 2.0, 2.0 ) )
18+
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 2.0, 2.0 ) )
1919
true
20-
> bool = {{alias}}( new {{alias:@stdlib/complex/float64}}( 3.0, 1.0 ) )
20+
> bool = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 3.0, 1.0 ) )
2121
true
2222
> bool = {{alias}}( 3.14 )
2323
false

lib/node_modules/@stdlib/assert/is-complex128/docs/repl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
Examples
1616
--------
17-
> var bool = {{alias}}( new {{alias:@stdlib/complex/float64}}( 3.0, 1.0 ) )
17+
> var bool = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 3.0, 1.0 ) )
1818
true
19-
> bool = {{alias}}( new {{alias:@stdlib/complex/float32}}( 2.0, 2.0 ) )
19+
> bool = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 2.0, 2.0 ) )
2020
false
2121
> bool = {{alias}}( 3.14 )
2222
false

lib/node_modules/@stdlib/assert/is-complex64/docs/repl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
Examples
1616
--------
17-
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32}}( 2.0, 2.0 ) )
17+
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 2.0, 2.0 ) )
1818
true
19-
> bool = {{alias}}( new {{alias:@stdlib/complex/float64}}( 3.0, 1.0 ) )
19+
> bool = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 3.0, 1.0 ) )
2020
false
2121
> bool = {{alias}}( 3.14 )
2222
false

lib/node_modules/@stdlib/assert/is-same-complex128/docs/repl.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121

2222
Examples
2323
--------
24-
> var x = new {{alias:@stdlib/complex/float64}}( 1.0, 2.0 );
25-
> var y = new {{alias:@stdlib/complex/float64}}( 1.0, 2.0 );
24+
> var x = new {{alias:@stdlib/complex/float64/ctor}}( 1.0, 2.0 );
25+
> var y = new {{alias:@stdlib/complex/float64/ctor}}( 1.0, 2.0 );
2626
> var bool = {{alias}}( x, y )
2727
true
2828

29-
> x = new {{alias:@stdlib/complex/float64}}( NaN, NaN );
30-
> y = new {{alias:@stdlib/complex/float64}}( NaN, NaN );
29+
> x = new {{alias:@stdlib/complex/float64/ctor}}( NaN, NaN );
30+
> y = new {{alias:@stdlib/complex/float64/ctor}}( NaN, NaN );
3131
> bool = {{alias}}( x, y )
3232
true
3333

lib/node_modules/@stdlib/assert/is-same-complex64/docs/repl.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121

2222
Examples
2323
--------
24-
> var x = new {{alias:@stdlib/complex/float32}}( 1.0, 2.0 );
25-
> var y = new {{alias:@stdlib/complex/float32}}( 1.0, 2.0 );
24+
> var x = new {{alias:@stdlib/complex/float32/ctor}}( 1.0, 2.0 );
25+
> var y = new {{alias:@stdlib/complex/float32/ctor}}( 1.0, 2.0 );
2626
> var bool = {{alias}}( x, y )
2727
true
2828

29-
> x = new {{alias:@stdlib/complex/float32}}( NaN, NaN );
30-
> y = new {{alias:@stdlib/complex/float32}}( NaN, NaN );
29+
> x = new {{alias:@stdlib/complex/float32/ctor}}( NaN, NaN );
30+
> y = new {{alias:@stdlib/complex/float32/ctor}}( NaN, NaN );
3131
> bool = {{alias}}( x, y )
3232
true
3333

lib/node_modules/@stdlib/complex/base/cast-return/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
Examples
3434
--------
35-
> var f = {{alias}}( {{alias:@stdlib/math/base/ops/addf}}, 2, {{alias:@stdlib/complex/float32}} );
35+
> var f = {{alias}}( {{alias:@stdlib/math/base/ops/addf}}, 2, {{alias:@stdlib/complex/float32/ctor}} );
3636
> var z = f( 3.0, 4.0 )
3737
<Complex64>
3838
> var re = {{alias:@stdlib/complex/realf}}( z )

lib/node_modules/@stdlib/complex/base/wrap-function/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
Examples
3636
--------
37-
> var f = {{alias}}( {{alias:@stdlib/math/base/ops/caddf}}, 2, {{alias:@stdlib/complex/float32}} );
37+
> var f = {{alias}}( {{alias:@stdlib/math/base/ops/caddf}}, 2, {{alias:@stdlib/complex/float32/ctor}} );
3838
> var z = f( 3.0, 4.0 )
3939
<Complex64>
4040
> var re = {{alias:@stdlib/complex/realf}}( z )

lib/node_modules/@stdlib/complex/conj/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
Examples
1717
--------
18-
> var z = new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 );
18+
> var z = new {{alias:@stdlib/complex/float64/ctor}}( 5.0, 3.0 );
1919
> z.toString()
2020
'5 + 3i'
2121
> var v = {{alias}}( z );

lib/node_modules/@stdlib/complex/conjf/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
Examples
1717
--------
18-
> var z = new {{alias:@stdlib/complex/float32}}( 5.0, 3.0 );
18+
> var z = new {{alias:@stdlib/complex/float32/ctor}}( 5.0, 3.0 );
1919
> z.toString()
2020
'5 + 3i'
2121
> var v = {{alias}}( z );

lib/node_modules/@stdlib/complex/dtype/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
Examples
1919
--------
20-
> var v = new {{alias:@stdlib/complex/float64}}( 1.0, 2.0 );
20+
> var v = new {{alias:@stdlib/complex/float64/ctor}}( 1.0, 2.0 );
2121
> var dt = {{alias}}( v )
2222
'complex128'
2323
> dt = {{alias}}( 'beep' )

lib/node_modules/@stdlib/complex/imag/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
Examples
1717
--------
18-
> var z = new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 );
18+
> var z = new {{alias:@stdlib/complex/float64/ctor}}( 5.0, 3.0 );
1919
> var im = {{alias}}( z )
2020
3.0
2121

lib/node_modules/@stdlib/complex/imagf/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
Examples
1717
--------
18-
> var z = new {{alias:@stdlib/complex/float32}}( 5.0, 3.0 );
18+
> var z = new {{alias:@stdlib/complex/float32/ctor}}( 5.0, 3.0 );
1919
> var im = {{alias}}( z )
2020
3.0
2121

lib/node_modules/@stdlib/complex/real/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
Examples
1717
--------
18-
> var z = new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 );
18+
> var z = new {{alias:@stdlib/complex/float64/ctor}}( 5.0, 3.0 );
1919
> var re = {{alias}}( z )
2020
5.0
2121

lib/node_modules/@stdlib/complex/realf/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
Examples
1717
--------
18-
> var z = new {{alias:@stdlib/complex/float32}}( 5.0, 3.0 );
18+
> var z = new {{alias:@stdlib/complex/float32/ctor}}( 5.0, 3.0 );
1919
> var re = {{alias}}( z )
2020
5.0
2121

lib/node_modules/@stdlib/complex/reim/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
Examples
1717
--------
18-
> var z = new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 );
18+
> var z = new {{alias:@stdlib/complex/float64/ctor}}( 5.0, 3.0 );
1919
> var out = {{alias}}( z )
2020
<Float64Array>[ 5.0, 3.0 ]
2121

lib/node_modules/@stdlib/complex/reimf/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
Examples
1717
--------
18-
> var z = new {{alias:@stdlib/complex/float32}}( 5.0, 3.0 );
18+
> var z = new {{alias:@stdlib/complex/float32/ctor}}( 5.0, 3.0 );
1919
> var out = {{alias}}( z )
2020
<Float32Array>[ 5.0, 3.0 ]
2121

lib/node_modules/@stdlib/math/base/ops/cadd/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
Examples
1919
--------
20-
> var z = new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 )
20+
> var z = new {{alias:@stdlib/complex/float64/ctor}}( 5.0, 3.0 )
2121
<Complex128>
2222
> var out = {{alias}}( z, z )
2323
<Complex128>

lib/node_modules/@stdlib/math/base/ops/caddf/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
Examples
1919
--------
20-
> var z = new {{alias:@stdlib/complex/float32}}( 5.0, 3.0 )
20+
> var z = new {{alias:@stdlib/complex/float32/ctor}}( 5.0, 3.0 )
2121
<Complex64>
2222
> var out = {{alias}}( z, z )
2323
<Complex64>

lib/node_modules/@stdlib/math/base/ops/cdiv/docs/repl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
Examples
1919
--------
20-
> var z1 = new {{alias:@stdlib/complex/float64}}( -13.0, -1.0 )
20+
> var z1 = new {{alias:@stdlib/complex/float64/ctor}}( -13.0, -1.0 )
2121
<Complex128>
22-
> var z2 = new {{alias:@stdlib/complex/float64}}( -2.0, 1.0 )
22+
> var z2 = new {{alias:@stdlib/complex/float64/ctor}}( -2.0, 1.0 )
2323
<Complex128>
2424
> var y = {{alias}}( z1, z2 )
2525
<Complex128>

lib/node_modules/@stdlib/math/base/ops/cmul/docs/repl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
Examples
1919
--------
20-
> var z1 = new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 )
20+
> var z1 = new {{alias:@stdlib/complex/float64/ctor}}( 5.0, 3.0 )
2121
<Complex128>
22-
> var z2 = new {{alias:@stdlib/complex/float64}}( -2.0, 1.0 )
22+
> var z2 = new {{alias:@stdlib/complex/float64/ctor}}( -2.0, 1.0 )
2323
<Complex128>
2424
> var out = {{alias}}( z1, z2 )
2525
<Complex128>

lib/node_modules/@stdlib/math/base/ops/cmulf/docs/repl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
Examples
1919
--------
20-
> var z1 = new {{alias:@stdlib/complex/float32}}( 5.0, 3.0 )
20+
> var z1 = new {{alias:@stdlib/complex/float32/ctor}}( 5.0, 3.0 )
2121
<Complex64>
22-
> var z2 = new {{alias:@stdlib/complex/float32}}( -2.0, 1.0 )
22+
> var z2 = new {{alias:@stdlib/complex/float32/ctor}}( -2.0, 1.0 )
2323
<Complex64>
2424
> var out = {{alias}}( z1, z2 )
2525
<Complex64>

lib/node_modules/@stdlib/math/base/ops/cneg/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
Examples
1616
--------
17-
> var z = new {{alias:@stdlib/complex/float64}}( -4.2, 5.5 )
17+
> var z = new {{alias:@stdlib/complex/float64/ctor}}( -4.2, 5.5 )
1818
<Complex128>
1919
> var v = {{alias}}( z )
2020
<Complex128>

lib/node_modules/@stdlib/math/base/ops/cnegf/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
Examples
1616
--------
17-
> var z = new {{alias:@stdlib/complex/float32}}( -4.0, 5.0 )
17+
> var z = new {{alias:@stdlib/complex/float32/ctor}}( -4.0, 5.0 )
1818
<Complex64>
1919
> var v = {{alias}}( z )
2020
<Complex64>

lib/node_modules/@stdlib/math/base/ops/csub/docs/repl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
Examples
1919
--------
20-
> var z1 = new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 )
20+
> var z1 = new {{alias:@stdlib/complex/float64/ctor}}( 5.0, 3.0 )
2121
<Complex128>
22-
> var z2 = new {{alias:@stdlib/complex/float64}}( -2.0, 1.0 )
22+
> var z2 = new {{alias:@stdlib/complex/float64/ctor}}( -2.0, 1.0 )
2323
<Complex128>
2424
> var out = {{alias}}( z1, z2 )
2525
<Complex128>

lib/node_modules/@stdlib/math/base/ops/csubf/docs/repl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
Examples
1919
--------
20-
> var z1 = new {{alias:@stdlib/complex/float32}}( 5.0, 3.0 )
20+
> var z1 = new {{alias:@stdlib/complex/float32/ctor}}( 5.0, 3.0 )
2121
<Complex64>
22-
> var z2 = new {{alias:@stdlib/complex/float32}}( -2.0, 1.0 )
22+
> var z2 = new {{alias:@stdlib/complex/float32/ctor}}( -2.0, 1.0 )
2323
<Complex64>
2424
> var out = {{alias}}( z1, z2 )
2525
<Complex64>

lib/node_modules/@stdlib/math/base/special/cabs/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
Examples
1919
--------
20-
> var y = {{alias}}( new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 ) )
20+
> var y = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 5.0, 3.0 ) )
2121
~5.831
2222

2323
See Also

lib/node_modules/@stdlib/math/base/special/cabs2/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
Examples
1919
--------
20-
> var y = {{alias}}( new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 ) )
20+
> var y = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 5.0, 3.0 ) )
2121
34.0
2222

2323
See Also

lib/node_modules/@stdlib/math/base/special/cabs2f/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
Examples
1919
--------
20-
> var y = {{alias}}( new {{alias:@stdlib/complex/float32}}( 5.0, 3.0 ) )
20+
> var y = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 5.0, 3.0 ) )
2121
34.0
2222

2323
See Also

lib/node_modules/@stdlib/math/base/special/cabsf/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
Examples
1919
--------
20-
> var y = {{alias}}( new {{alias:@stdlib/complex/float32}}( 5.0, 3.0 ) )
20+
> var y = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 5.0, 3.0 ) )
2121
~5.831
2222

2323
See Also

lib/node_modules/@stdlib/math/base/special/cceil/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
Examples
1717
--------
18-
> var v = {{alias}}( new {{alias:@stdlib/complex/float64}}( -1.5, 2.5 ) )
18+
> var v = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( -1.5, 2.5 ) )
1919
<Complex128>
2020
> var re = {{alias:@stdlib/complex/real}}( v )
2121
-1.0

lib/node_modules/@stdlib/math/base/special/cceilf/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
Examples
1717
--------
18-
> var v = {{alias}}( new {{alias:@stdlib/complex/float32}}( -1.5, 2.5 ) )
18+
> var v = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( -1.5, 2.5 ) )
1919
<Complex64>
2020
> var re = {{alias:@stdlib/complex/real}}( v )
2121
-1.0

lib/node_modules/@stdlib/math/base/special/cceiln/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
Examples
2020
--------
21-
> var out = {{alias}}( new {{alias:@stdlib/complex/float64}}( 5.555, -3.333 ), -2 )
21+
> var out = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 5.555, -3.333 ), -2 )
2222
<Complex128>
2323
> var re = {{alias:@stdlib/complex/real}}( out )
2424
5.56

lib/node_modules/@stdlib/math/base/special/ccis/docs/repl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515

1616
Examples
1717
--------
18-
> var y = {{alias}}( new {{alias:@stdlib/complex/float64}}( 0.0, 0.0 ) )
18+
> var y = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 0.0, 0.0 ) )
1919
<Complex128>
2020
> var re = {{alias:@stdlib/complex/real}}( y )
2121
1.0
2222
> var im = {{alias:@stdlib/complex/imag}}( y )
2323
0.0
24-
> y = {{alias}}( new {{alias:@stdlib/complex/float64}}( 1.0, 0.0 ) )
24+
> y = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 1.0, 0.0 ) )
2525
<Complex128>
2626
> re = {{alias:@stdlib/complex/real}}( y )
2727
~0.540

lib/node_modules/@stdlib/math/base/special/cexp/docs/repl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515

1616
Examples
1717
--------
18-
> var y = {{alias}}( new {{alias:@stdlib/complex/float64}}( 0.0, 0.0 ) )
18+
> var y = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 0.0, 0.0 ) )
1919
<Complex128>
2020
> var re = {{alias:@stdlib/complex/real}}( y )
2121
1.0
2222
> var im = {{alias:@stdlib/complex/imag}}( y )
2323
0.0
24-
> y = {{alias}}( new {{alias:@stdlib/complex/float64}}( 0.0, 1.0 ) )
24+
> y = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 0.0, 1.0 ) )
2525
<Complex128>
2626
> re = {{alias:@stdlib/complex/real}}( y )
2727
~0.540

lib/node_modules/@stdlib/math/base/special/cflipsign/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
Examples
2020
--------
21-
> var v = {{alias}}( new {{alias:@stdlib/complex/float64}}( -4.2, 5.5 ), -9.0 )
21+
> var v = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( -4.2, 5.5 ), -9.0 )
2222
<Complex128>
2323
> var re = {{alias:@stdlib/complex/real}}( v )
2424
4.2

0 commit comments

Comments
 (0)