Skip to content

Commit be3d4cf

Browse files
committed
Auto-generated commit
1 parent 626d72f commit be3d4cf

File tree

17 files changed

+23
-23
lines changed

17 files changed

+23
-23
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ In addition, the namespace contains the following functions:
120120
- <span class="signature">[`reim( z )`][@stdlib/complex/reim]</span><span class="delimiter">: </span><span class="description">return the real and imaginary components of a double-precision complex floating-point number.</span>
121121
- <span class="signature">[`reimf( z )`][@stdlib/complex/reimf]</span><span class="delimiter">: </span><span class="description">return the real and imaginary components of a single-precision complex floating-point number.</span>
122122
- <span class="signature">[`reviveComplex64( key, value )`][@stdlib/complex/float32/reviver]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized 64-bit complex number.</span>
123-
- <span class="signature">[`reviveComplex128( key, value )`][@stdlib/complex/reviver-float64]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized 128-bit complex number.</span>
123+
- <span class="signature">[`reviveComplex128( key, value )`][@stdlib/complex/float64/reviver]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized 128-bit complex number.</span>
124124
- <span class="signature">[`reviveComplex( key, value )`][@stdlib/complex/reviver]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized complex number.</span>
125125

126126
</div>
@@ -260,7 +260,7 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
260260

261261
[@stdlib/complex/float32/reviver]: https://github.com/stdlib-js/complex/tree/main/float32/reviver
262262

263-
[@stdlib/complex/reviver-float64]: https://github.com/stdlib-js/complex/tree/main/reviver-float64
263+
[@stdlib/complex/float64/reviver]: https://github.com/stdlib-js/complex/tree/main/float64/reviver
264264

265265
[@stdlib/complex/reviver]: https://github.com/stdlib-js/complex/tree/main/reviver
266266

docs/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import reim = require( './../../reim' );
3838
import reimf = require( './../../reimf' );
3939
import reviveComplex = require( './../../reviver' );
4040
import reviveComplex64 = require( './../../float32/reviver' );
41-
import reviveComplex128 = require( './../../reviver-float64' );
41+
import reviveComplex128 = require( './../../float64/reviver' );
4242

4343
/**
4444
* Interface describing the `complex` namespace.

float32/reviver/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ bool = ( w.im === z.im );
119119
## See Also
120120

121121
- <span class="package-name">[`@stdlib/complex/float32`][@stdlib/complex/float32]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
122-
- <span class="package-name">[`@stdlib/complex/reviver-float64`][@stdlib/complex/reviver-float64]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized 128-bit complex number.</span>
122+
- <span class="package-name">[`@stdlib/complex/float64/reviver`][@stdlib/complex/float64/reviver]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized 128-bit complex number.</span>
123123
- <span class="package-name">[`@stdlib/complex/reviver`][@stdlib/complex/reviver]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized complex number.</span>
124124

125125
</section>
@@ -134,7 +134,7 @@ bool = ( w.im === z.im );
134134

135135
<!-- <related-links> -->
136136

137-
[@stdlib/complex/reviver-float64]: https://github.com/stdlib-js/complex/tree/main/reviver-float64
137+
[@stdlib/complex/float64/reviver]: https://github.com/stdlib-js/complex/tree/main/float64/reviver
138138

139139
[@stdlib/complex/reviver]: https://github.com/stdlib-js/complex/tree/main/reviver
140140

float64/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ var o = z.toJSON();
149149
*/
150150
```
151151

152-
To [revive][mdn-json-parse] a `Complex128` number from a [JSON][json] `string`, see [@stdlib/complex/reviver-float64][@stdlib/complex/reviver-float64].
152+
To [revive][mdn-json-parse] a `Complex128` number from a [JSON][json] `string`, see [@stdlib/complex/float64/reviver][@stdlib/complex/float64/reviver].
153153

154154
</section>
155155

@@ -593,7 +593,7 @@ int main( void ) {
593593

594594
[mdn-json-parse]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse
595595

596-
[@stdlib/complex/reviver-float64]: https://github.com/stdlib-js/complex/tree/main/reviver-float64
596+
[@stdlib/complex/float64/reviver]: https://github.com/stdlib-js/complex/tree/main/float64/reviver
597597

598598
<!-- <related-links> -->
599599

float64/ctor/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ var o = z.toJSON();
149149
*/
150150
```
151151

152-
To [revive][mdn-json-parse] a `Complex128` number from a [JSON][json] `string`, see [@stdlib/complex/reviver-float64][@stdlib/complex/reviver-float64].
152+
To [revive][mdn-json-parse] a `Complex128` number from a [JSON][json] `string`, see [@stdlib/complex/float64/reviver][@stdlib/complex/float64/reviver].
153153

154154
</section>
155155

@@ -593,7 +593,7 @@ int main( void ) {
593593

594594
[mdn-json-parse]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse
595595

596-
[@stdlib/complex/reviver-float64]: https://github.com/stdlib-js/complex/tree/main/reviver-float64
596+
[@stdlib/complex/float64/reviver]: https://github.com/stdlib-js/complex/tree/main/float64/reviver
597597

598598
<!-- <related-links> -->
599599

reviver-float64/README.md renamed to float64/reviver/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ limitations under the License.
3737
## Usage
3838

3939
```javascript
40-
var reviveComplex128 = require( '@stdlib/complex/reviver-float64' );
40+
var reviveComplex128 = require( '@stdlib/complex/float64/reviver' );
4141
```
4242

4343
#### reviveComplex128( key, value )
@@ -78,7 +78,7 @@ For details on the JSON serialization format, see [`Complex128`][@stdlib/complex
7878
```javascript
7979
var Complex128 = require( '@stdlib/complex/float64/ctor' );
8080
var parseJSON = require( '@stdlib/utils/parse-json' );
81-
var reviveComplex128 = require( '@stdlib/complex/reviver-float64' );
81+
var reviveComplex128 = require( '@stdlib/complex/float64/reviver' );
8282

8383
var z = new Complex128( 5.0, 3.0 );
8484
var str = JSON.stringify( z );
File renamed without changes.

reviver-float64/examples/index.js renamed to float64/reviver/examples/index.js

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

1919
'use strict';
2020

21-
var Complex128 = require( './../../float64/ctor' );
21+
var Complex128 = require( './../../../float64/ctor' );
2222
var parseJSON = require( '@stdlib/utils/parse-json' );
2323
var reviveComplex128 = require( './../lib' );
2424

reviver-float64/lib/index.js renamed to float64/reviver/lib/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
/**
2222
* Revive a JSON-serialized 128-bit complex number.
2323
*
24-
* @module @stdlib/complex/reviver-float64
24+
* @module @stdlib/complex/float64/reviver
2525
*
2626
* @example
2727
* var parseJSON = require( '@stdlib/utils/parse-json' );
28-
* var reviveComplex128 = require( '@stdlib/complex/reviver-float64' );
28+
* var reviveComplex128 = require( '@stdlib/complex/float64/reviver' );
2929
*
3030
* var str = '{"type":"Complex128","re":5,"im":3}';
3131
*

reviver-float64/lib/main.js renamed to float64/reviver/lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var isNumber = require( '@stdlib/assert/is-number' ).isPrimitive;
24-
var Complex128 = require( './../../float64/ctor' );
24+
var Complex128 = require( './../../../float64/ctor' );
2525

2626

2727
// MAIN //

reviver-float64/package.json renamed to float64/reviver/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stdlib/complex/reviver-float64",
2+
"name": "@stdlib/complex/float64/reviver",
33
"version": "0.0.0",
44
"description": "Revive a JSON-serialized 128-bit complex number.",
55
"license": "Apache-2.0",

reviver-float64/test/test.js renamed to float64/reviver/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var tape = require( 'tape' );
2424
var copy = require( '@stdlib/utils/copy' );
2525
var parseJSON = require( '@stdlib/utils/parse-json' );
26-
var Complex128 = require( './../../float64/ctor' );
26+
var Complex128 = require( './../../../float64/ctor' );
2727
var reviveComplex128 = require( './../lib' );
2828

2929

lib/index.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ setReadOnly( ns, 'complexDataTypes', require( './../dtypes' ) );
104104
* @memberof ns
105105
* @readonly
106106
* @constructor
107-
* @see {@link module:@stdlib/complex/float32}
107+
* @see {@link module:@stdlib/complex/float32/ctor}
108108
*/
109109
setReadOnly( ns, 'Complex64', require( './../float32/ctor' ) );
110110

@@ -113,7 +113,7 @@ setReadOnly( ns, 'Complex64', require( './../float32/ctor' ) );
113113
* @memberof ns
114114
* @readonly
115115
* @constructor
116-
* @see {@link module:@stdlib/complex/float64}
116+
* @see {@link module:@stdlib/complex/float64/ctor}
117117
*/
118118
setReadOnly( ns, 'Complex128', require( './../float64/ctor' ) );
119119

@@ -203,9 +203,9 @@ setReadOnly( ns, 'reviveComplex64', require( './../float32/reviver' ) );
203203
* @memberof ns
204204
* @readonly
205205
* @type {Function}
206-
* @see {@link module:@stdlib/complex/reviver-float64}
206+
* @see {@link module:@stdlib/complex/float64/reviver}
207207
*/
208-
setReadOnly( ns, 'reviveComplex128', require( './../reviver-float64' ) );
208+
setReadOnly( ns, 'reviveComplex128', require( './../float64/reviver' ) );
209209

210210

211211
// EXPORTS //

reviver/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ bool = ( w.im === z.im );
120120

121121
- <span class="package-name">[`@stdlib/complex/float64`][@stdlib/complex/float64]</span><span class="delimiter">: </span><span class="description">128-bit complex number.</span>
122122
- <span class="package-name">[`@stdlib/complex/float32`][@stdlib/complex/float32]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
123-
- <span class="package-name">[`@stdlib/complex/reviver-float64`][@stdlib/complex/reviver-float64]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized 128-bit complex number.</span>
123+
- <span class="package-name">[`@stdlib/complex/float64/reviver`][@stdlib/complex/float64/reviver]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized 128-bit complex number.</span>
124124
- <span class="package-name">[`@stdlib/complex/float32/reviver`][@stdlib/complex/float32/reviver]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized 64-bit complex number.</span>
125125

126126
</section>
@@ -137,7 +137,7 @@ bool = ( w.im === z.im );
137137

138138
[@stdlib/complex/float32]: https://github.com/stdlib-js/complex/tree/main/float32
139139

140-
[@stdlib/complex/reviver-float64]: https://github.com/stdlib-js/complex/tree/main/reviver-float64
140+
[@stdlib/complex/float64/reviver]: https://github.com/stdlib-js/complex/tree/main/float64/reviver
141141

142142
[@stdlib/complex/float32/reviver]: https://github.com/stdlib-js/complex/tree/main/float32/reviver
143143

0 commit comments

Comments
 (0)