Skip to content

Commit 0ede1a5

Browse files
committed
refactor: update paths
Ref: #2260
1 parent cecc11a commit 0ede1a5

File tree

14 files changed

+42
-42
lines changed

14 files changed

+42
-42
lines changed

lib/node_modules/@stdlib/complex/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ In addition, the namespace contains the following functions:
7777
<div class="namespace-toc">
7878

7979
- <span class="signature">[`conj( z )`][@stdlib/complex/conj]</span><span class="delimiter">: </span><span class="description">return the complex conjugate of a double-precision complex floating-point number.</span>
80-
- <span class="signature">[`conjf( z )`][@stdlib/complex/conjf]</span><span class="delimiter">: </span><span class="description">return the complex conjugate of a single-precision complex floating-point number.</span>
80+
- <span class="signature">[`conjf( z )`][@stdlib/complex/float32/conj]</span><span class="delimiter">: </span><span class="description">return the complex conjugate of a single-precision complex floating-point number.</span>
8181
- <span class="signature">[`imag( z )`][@stdlib/complex/imag]</span><span class="delimiter">: </span><span class="description">return the imaginary component of a double-precision complex floating-point number.</span>
8282
- <span class="signature">[`imagf( z )`][@stdlib/complex/imagf]</span><span class="delimiter">: </span><span class="description">return the imaginary component of a single-precision complex floating-point number.</span>
8383
- <span class="signature">[`real( z )`][@stdlib/complex/real]</span><span class="delimiter">: </span><span class="description">return the real component of a double-precision complex floating-point number.</span>
@@ -139,7 +139,7 @@ console.log( objectKeys( ns ) );
139139

140140
[@stdlib/complex/conj]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/conj
141141

142-
[@stdlib/complex/conjf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/conjf
142+
[@stdlib/complex/float32/conj]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/conj
143143

144144
[@stdlib/complex/imag]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/imag
145145

lib/node_modules/@stdlib/complex/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import base = require( '@stdlib/complex/base' );
2424
import complex = require( '@stdlib/complex/cmplx' );
2525
import conj = require( '@stdlib/complex/conj' );
26-
import conjf = require( '@stdlib/complex/conjf' );
26+
import conjf = require( '@stdlib/complex/float32/conj' );
2727
import complexCtors = require( '@stdlib/complex/ctors' );
2828
import complexDataType = require( '@stdlib/complex/dtype' );
2929
import complexDataTypes = require( '@stdlib/complex/dtypes' );

lib/node_modules/@stdlib/complex/lib/index.js

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,6 @@ setReadOnly( ns, 'complex', require( '@stdlib/complex/cmplx' ) );
6363
*/
6464
setReadOnly( ns, 'conj', require( '@stdlib/complex/conj' ) );
6565

66-
/**
67-
* @name conjf
68-
* @memberof ns
69-
* @readonly
70-
* @type {Function}
71-
* @see {@link module:@stdlib/complex/conjf}
72-
*/
73-
setReadOnly( ns, 'conjf', require( '@stdlib/complex/conjf' ) );
74-
7566
/**
7667
* @name complexCtors
7768
* @memberof ns
@@ -99,6 +90,15 @@ setReadOnly( ns, 'complexDataType', require( '@stdlib/complex/dtype' ) );
9990
*/
10091
setReadOnly( ns, 'complexDataTypes', require( '@stdlib/complex/dtypes' ) );
10192

93+
/**
94+
* @name conjf
95+
* @memberof ns
96+
* @readonly
97+
* @type {Function}
98+
* @see {@link module:@stdlib/complex/float32/conj}
99+
*/
100+
setReadOnly( ns, 'conjf', require( '@stdlib/complex/float32/conj' ) );
101+
102102
/**
103103
* @name Complex64
104104
* @memberof ns
@@ -108,6 +108,15 @@ setReadOnly( ns, 'complexDataTypes', require( '@stdlib/complex/dtypes' ) );
108108
*/
109109
setReadOnly( ns, 'Complex64', require( '@stdlib/complex/float32/ctor' ) );
110110

111+
/**
112+
* @name reviveComplex64
113+
* @memberof ns
114+
* @readonly
115+
* @type {Function}
116+
* @see {@link module:@stdlib/complex/float32/reviver}
117+
*/
118+
setReadOnly( ns, 'reviveComplex64', require( '@stdlib/complex/float32/reviver' ) );
119+
111120
/**
112121
* @name Complex128
113122
* @memberof ns
@@ -117,6 +126,15 @@ setReadOnly( ns, 'Complex64', require( '@stdlib/complex/float32/ctor' ) );
117126
*/
118127
setReadOnly( ns, 'Complex128', require( '@stdlib/complex/float64/ctor' ) );
119128

129+
/**
130+
* @name reviveComplex128
131+
* @memberof ns
132+
* @readonly
133+
* @type {Function}
134+
* @see {@link module:@stdlib/complex/float64/reviver}
135+
*/
136+
setReadOnly( ns, 'reviveComplex128', require( '@stdlib/complex/float64/reviver' ) );
137+
120138
/**
121139
* @name imag
122140
* @memberof ns
@@ -189,24 +207,6 @@ setReadOnly( ns, 'reimf', require( '@stdlib/complex/reimf' ) );
189207
*/
190208
setReadOnly( ns, 'reviveComplex', require( '@stdlib/complex/reviver' ) );
191209

192-
/**
193-
* @name reviveComplex64
194-
* @memberof ns
195-
* @readonly
196-
* @type {Function}
197-
* @see {@link module:@stdlib/complex/float32/reviver}
198-
*/
199-
setReadOnly( ns, 'reviveComplex64', require( '@stdlib/complex/float32/reviver' ) );
200-
201-
/**
202-
* @name reviveComplex128
203-
* @memberof ns
204-
* @readonly
205-
* @type {Function}
206-
* @see {@link module:@stdlib/complex/float64/reviver}
207-
*/
208-
setReadOnly( ns, 'reviveComplex128', require( '@stdlib/complex/float64/reviver' ) );
209-
210210

211211
// EXPORTS //
212212

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1547,7 +1547,7 @@ compose,"@stdlib/utils/compose"
15471547
composeAsync,"@stdlib/utils/async/compose"
15481548
configdir,"@stdlib/os/configdir"
15491549
conj,"@stdlib/complex/conj"
1550-
conjf,"@stdlib/complex/conjf"
1550+
conjf,"@stdlib/complex/float32/conj"
15511551
constantcase,"@stdlib/string/constantcase"
15521552
constantFunction,"@stdlib/utils/constant-function"
15531553
constantStream,"@stdlib/streams/node/from-constant"

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/lib/namespace/c.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,8 +465,8 @@ ns.push({
465465

466466
ns.push({
467467
'alias': 'conjf',
468-
'path': '@stdlib/complex/conjf',
469-
'value': require( '@stdlib/complex/conjf' ),
468+
'path': '@stdlib/complex/float32/conj',
469+
'value': require( '@stdlib/complex/float32/conj' ),
470470
'type': 'Function',
471471
'related': [
472472
'@stdlib/complex/conj',

lib/node_modules/@stdlib/namespace/pkg2alias/data/data.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1547,7 +1547,7 @@
15471547
"@stdlib/utils/async/compose",composeAsync
15481548
"@stdlib/os/configdir",configdir
15491549
"@stdlib/complex/conj",conj
1550-
"@stdlib/complex/conjf",conjf
1550+
"@stdlib/complex/float32/conj",conjf
15511551
"@stdlib/string/constantcase",constantcase
15521552
"@stdlib/utils/constant-function",constantFunction
15531553
"@stdlib/streams/node/from-constant",constantStream

lib/node_modules/@stdlib/namespace/pkg2alias/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/pkg2related/data/data.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1547,7 +1547,7 @@
15471547
"@stdlib/utils/async/compose","@stdlib/utils/compose"
15481548
"@stdlib/os/configdir","@stdlib/os/homedir,@stdlib/os/tmpdir"
15491549
"@stdlib/complex/conj","@stdlib/complex/imag,@stdlib/complex/real,@stdlib/complex/reim"
1550-
"@stdlib/complex/conjf","@stdlib/complex/conj,@stdlib/complex/imagf,@stdlib/complex/realf,@stdlib/complex/reimf"
1550+
"@stdlib/complex/float32/conj","@stdlib/complex/conj,@stdlib/complex/imagf,@stdlib/complex/realf,@stdlib/complex/reimf"
15511551
"@stdlib/string/constantcase","@stdlib/string/camelcase,@stdlib/string/kebabcase,@stdlib/string/pascalcase,@stdlib/string/snakecase"
15521552
"@stdlib/utils/constant-function","@stdlib/utils/argument-function,@stdlib/utils/identity-function"
15531553
"@stdlib/streams/node/from-constant","@stdlib/streams/node/from-array,@stdlib/streams/node/from-iterator"

lib/node_modules/@stdlib/namespace/pkg2related/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/pkg2standalone/data/data.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1547,7 +1547,7 @@
15471547
"@stdlib/utils/async/compose","@stdlib/utils-async-compose"
15481548
"@stdlib/os/configdir","@stdlib/os-configdir"
15491549
"@stdlib/complex/conj","@stdlib/complex-conj"
1550-
"@stdlib/complex/conjf","@stdlib/complex-conjf"
1550+
"@stdlib/complex/float32/conj","@stdlib/complex-conjf"
15511551
"@stdlib/string/constantcase","@stdlib/string-constantcase"
15521552
"@stdlib/utils/constant-function","@stdlib/utils-constant-function"
15531553
"@stdlib/streams/node/from-constant","@stdlib/streams-node-from-constant"

lib/node_modules/@stdlib/namespace/pkg2standalone/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/standalone2pkg/data/data.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1547,7 +1547,7 @@
15471547
"@stdlib/utils-async-compose","@stdlib/utils/async/compose"
15481548
"@stdlib/os-configdir","@stdlib/os/configdir"
15491549
"@stdlib/complex-conj","@stdlib/complex/conj"
1550-
"@stdlib/complex-conjf","@stdlib/complex/conjf"
1550+
"@stdlib/complex-conjf","@stdlib/complex/float32/conj"
15511551
"@stdlib/string-constantcase","@stdlib/string/constantcase"
15521552
"@stdlib/utils-constant-function","@stdlib/utils/constant-function"
15531553
"@stdlib/streams-node-from-constant","@stdlib/streams/node/from-constant"

lib/node_modules/@stdlib/namespace/standalone2pkg/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)