Skip to content

Commit

Permalink
refactor: update paths
Browse files Browse the repository at this point in the history
Ref: #2260
  • Loading branch information
kgryte committed Jul 16, 2024
1 parent cecc11a commit 0ede1a5
Show file tree
Hide file tree
Showing 14 changed files with 42 additions and 42 deletions.
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/complex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ In addition, the namespace contains the following functions:
<div class="namespace-toc">

- <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>
- <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>
- <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>
- <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>
- <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>
- <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>
Expand Down Expand Up @@ -139,7 +139,7 @@ console.log( objectKeys( ns ) );

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/complex/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import base = require( '@stdlib/complex/base' );
import complex = require( '@stdlib/complex/cmplx' );
import conj = require( '@stdlib/complex/conj' );
import conjf = require( '@stdlib/complex/conjf' );
import conjf = require( '@stdlib/complex/float32/conj' );
import complexCtors = require( '@stdlib/complex/ctors' );
import complexDataType = require( '@stdlib/complex/dtype' );
import complexDataTypes = require( '@stdlib/complex/dtypes' );
Expand Down
54 changes: 27 additions & 27 deletions lib/node_modules/@stdlib/complex/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,6 @@ setReadOnly( ns, 'complex', require( '@stdlib/complex/cmplx' ) );
*/
setReadOnly( ns, 'conj', require( '@stdlib/complex/conj' ) );

/**
* @name conjf
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/conjf}
*/
setReadOnly( ns, 'conjf', require( '@stdlib/complex/conjf' ) );

/**
* @name complexCtors
* @memberof ns
Expand Down Expand Up @@ -99,6 +90,15 @@ setReadOnly( ns, 'complexDataType', require( '@stdlib/complex/dtype' ) );
*/
setReadOnly( ns, 'complexDataTypes', require( '@stdlib/complex/dtypes' ) );

/**
* @name conjf
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/float32/conj}
*/
setReadOnly( ns, 'conjf', require( '@stdlib/complex/float32/conj' ) );

/**
* @name Complex64
* @memberof ns
Expand All @@ -108,6 +108,15 @@ setReadOnly( ns, 'complexDataTypes', require( '@stdlib/complex/dtypes' ) );
*/
setReadOnly( ns, 'Complex64', require( '@stdlib/complex/float32/ctor' ) );

/**
* @name reviveComplex64
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/float32/reviver}
*/
setReadOnly( ns, 'reviveComplex64', require( '@stdlib/complex/float32/reviver' ) );

/**
* @name Complex128
* @memberof ns
Expand All @@ -117,6 +126,15 @@ setReadOnly( ns, 'Complex64', require( '@stdlib/complex/float32/ctor' ) );
*/
setReadOnly( ns, 'Complex128', require( '@stdlib/complex/float64/ctor' ) );

/**
* @name reviveComplex128
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/float64/reviver}
*/
setReadOnly( ns, 'reviveComplex128', require( '@stdlib/complex/float64/reviver' ) );

/**
* @name imag
* @memberof ns
Expand Down Expand Up @@ -189,24 +207,6 @@ setReadOnly( ns, 'reimf', require( '@stdlib/complex/reimf' ) );
*/
setReadOnly( ns, 'reviveComplex', require( '@stdlib/complex/reviver' ) );

/**
* @name reviveComplex64
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/float32/reviver}
*/
setReadOnly( ns, 'reviveComplex64', require( '@stdlib/complex/float32/reviver' ) );

/**
* @name reviveComplex128
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/float64/reviver}
*/
setReadOnly( ns, 'reviveComplex128', require( '@stdlib/complex/float64/reviver' ) );


// EXPORTS //

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/namespace/alias2pkg/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,7 @@ compose,"@stdlib/utils/compose"
composeAsync,"@stdlib/utils/async/compose"
configdir,"@stdlib/os/configdir"
conj,"@stdlib/complex/conj"
conjf,"@stdlib/complex/conjf"
conjf,"@stdlib/complex/float32/conj"
constantcase,"@stdlib/string/constantcase"
constantFunction,"@stdlib/utils/constant-function"
constantStream,"@stdlib/streams/node/from-constant"
Expand Down

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/namespace/lib/namespace/c.js
Original file line number Diff line number Diff line change
Expand Up @@ -465,8 +465,8 @@ ns.push({

ns.push({
'alias': 'conjf',
'path': '@stdlib/complex/conjf',
'value': require( '@stdlib/complex/conjf' ),
'path': '@stdlib/complex/float32/conj',
'value': require( '@stdlib/complex/float32/conj' ),
'type': 'Function',
'related': [
'@stdlib/complex/conj',
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/namespace/pkg2alias/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,7 @@
"@stdlib/utils/async/compose",composeAsync
"@stdlib/os/configdir",configdir
"@stdlib/complex/conj",conj
"@stdlib/complex/conjf",conjf
"@stdlib/complex/float32/conj",conjf
"@stdlib/string/constantcase",constantcase
"@stdlib/utils/constant-function",constantFunction
"@stdlib/streams/node/from-constant",constantStream
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,7 @@
"@stdlib/utils/async/compose","@stdlib/utils/compose"
"@stdlib/os/configdir","@stdlib/os/homedir,@stdlib/os/tmpdir"
"@stdlib/complex/conj","@stdlib/complex/imag,@stdlib/complex/real,@stdlib/complex/reim"
"@stdlib/complex/conjf","@stdlib/complex/conj,@stdlib/complex/imagf,@stdlib/complex/realf,@stdlib/complex/reimf"
"@stdlib/complex/float32/conj","@stdlib/complex/conj,@stdlib/complex/imagf,@stdlib/complex/realf,@stdlib/complex/reimf"
"@stdlib/string/constantcase","@stdlib/string/camelcase,@stdlib/string/kebabcase,@stdlib/string/pascalcase,@stdlib/string/snakecase"
"@stdlib/utils/constant-function","@stdlib/utils/argument-function,@stdlib/utils/identity-function"
"@stdlib/streams/node/from-constant","@stdlib/streams/node/from-array,@stdlib/streams/node/from-iterator"
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,7 @@
"@stdlib/utils/async/compose","@stdlib/utils-async-compose"
"@stdlib/os/configdir","@stdlib/os-configdir"
"@stdlib/complex/conj","@stdlib/complex-conj"
"@stdlib/complex/conjf","@stdlib/complex-conjf"
"@stdlib/complex/float32/conj","@stdlib/complex-conjf"
"@stdlib/string/constantcase","@stdlib/string-constantcase"
"@stdlib/utils/constant-function","@stdlib/utils-constant-function"
"@stdlib/streams/node/from-constant","@stdlib/streams-node-from-constant"
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,7 @@
"@stdlib/utils-async-compose","@stdlib/utils/async/compose"
"@stdlib/os-configdir","@stdlib/os/configdir"
"@stdlib/complex-conj","@stdlib/complex/conj"
"@stdlib/complex-conjf","@stdlib/complex/conjf"
"@stdlib/complex-conjf","@stdlib/complex/float32/conj"
"@stdlib/string-constantcase","@stdlib/string/constantcase"
"@stdlib/utils-constant-function","@stdlib/utils/constant-function"
"@stdlib/streams-node-from-constant","@stdlib/streams/node/from-constant"
Expand Down

Large diffs are not rendered by default.

0 comments on commit 0ede1a5

Please sign in to comment.