Skip to content

Commit 65c824b

Browse files
committed
Rename package
1 parent 6ba3ee4 commit 65c824b

32 files changed

Lines changed: 34 additions & 34 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ ns.push({
4040
'type': 'Function',
4141
'related': [
4242
'@stdlib/types/complex/float64',
43-
'@stdlib/types/complex/complex64'
43+
'@stdlib/types/complex/float32'
4444
]
4545
});
4646

4747
ns.push({
4848
'alias': 'Complex64',
49-
'path': '@stdlib/types/complex/complex64',
50-
'value': require( '@stdlib/types/complex/complex64' ),
49+
'path': '@stdlib/types/complex/float32',
50+
'value': require( '@stdlib/types/complex/float32' ),
5151
'type': 'Function',
5252
'related': [
5353
'@stdlib/types/complex/factory',
@@ -62,7 +62,7 @@ ns.push({
6262
'type': 'Function',
6363
'related': [
6464
'@stdlib/types/complex/factory',
65-
'@stdlib/types/complex/complex64'
65+
'@stdlib/types/complex/float32'
6666
]
6767
});
6868

lib/node_modules/@stdlib/repl/lib/namespace/r.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ ns.push({
234234
'type': 'Function',
235235
'related': [
236236
'@stdlib/types/complex/float64',
237-
'@stdlib/types/complex/complex64',
237+
'@stdlib/types/complex/float32',
238238
'@stdlib/types/complex/utils/complex128-reviver',
239239
'@stdlib/types/complex/utils/complex64-reviver'
240240
]
@@ -258,7 +258,7 @@ ns.push({
258258
'value': require( '@stdlib/types/complex/utils/complex64-reviver' ),
259259
'type': 'Function',
260260
'related': [
261-
'@stdlib/types/complex/complex64',
261+
'@stdlib/types/complex/float32',
262262
'@stdlib/types/complex/utils/complex128-reviver',
263263
'@stdlib/types/complex/utils/reviver'
264264
]

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var z = complex( 5.0, 3.0 );
3333
By default, the function returns a [128-bit complex number][@stdlib/types/complex/float64]. To specify an alternative underlying data type, set the `dtype` parameter to one of the following:
3434

3535
* [`'float64'`][@stdlib/types/complex/float64]: store __real__ and __imaginary__ components as double-precision floating-point numbers.
36-
* [`'float32'`][@stdlib/types/complex/complex64]: store __real__ and __imaginary__ components as single-precision floating-point numbers.
36+
* [`'float32'`][@stdlib/types/complex/float32]: store __real__ and __imaginary__ components as single-precision floating-point numbers.
3737

3838
``` javascript
3939
var z = complex( 5.0, 3.0, 'float32' );
@@ -93,7 +93,7 @@ for ( i = 0; i < 100; i++ ) {
9393
<section class="links">
9494

9595
[@stdlib/types/complex/float64]: https://github.com/stdlib-js/stdlib
96-
[@stdlib/types/complex/complex64]: https://github.com/stdlib-js/stdlib
96+
[@stdlib/types/complex/float32]: https://github.com/stdlib-js/stdlib
9797

9898
</section>
9999

lib/node_modules/@stdlib/types/complex/factory/lib/ctors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
var CTORS = {
66
'float64': require( '@stdlib/types/complex/float64' ),
7-
'float32': require( '@stdlib/types/complex/complex64' )
7+
'float32': require( '@stdlib/types/complex/float32' )
88
};
99

1010

lib/node_modules/@stdlib/types/complex/factory/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
var tape = require( 'tape' );
66
var Complex128 = require( '@stdlib/types/complex/float64' );
7-
var Complex64 = require( '@stdlib/types/complex/complex64' );
7+
var Complex64 = require( '@stdlib/types/complex/float32' );
88
var instanceOf = require( '@stdlib/assert/instance-of' );
99
var complex = require( './../lib' );
1010

lib/node_modules/@stdlib/types/complex/complex64/README.md renamed to lib/node_modules/@stdlib/types/complex/float32/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
## Usage
1919

2020
``` javascript
21-
var Complex64 = require( '@stdlib/types/complex/complex64' );
21+
var Complex64 = require( '@stdlib/types/complex/float32' );
2222
```
2323

2424
#### Complex64( real, imag )
@@ -149,7 +149,7 @@ To [revive][mdn-json-parse] a `Complex64` number from a [JSON][json] `string`, s
149149
## Examples
150150

151151
``` javascript
152-
var Complex64 = require( '@stdlib/types/complex/complex64' );
152+
var Complex64 = require( '@stdlib/types/complex/float32' );
153153

154154
var z = new Complex64( 3.0, -2.0 );
155155

lib/node_modules/@stdlib/types/complex/complex64/benchmark/benchmark.js renamed to lib/node_modules/@stdlib/types/complex/float32/benchmark/benchmark.js

File renamed without changes.

lib/node_modules/@stdlib/types/complex/complex64/benchmark/julia/REQUIRE renamed to lib/node_modules/@stdlib/types/complex/float32/benchmark/julia/REQUIRE

File renamed without changes.

lib/node_modules/@stdlib/types/complex/complex64/benchmark/julia/benchmark.jl renamed to lib/node_modules/@stdlib/types/complex/float32/benchmark/julia/benchmark.jl

File renamed without changes.

lib/node_modules/@stdlib/types/complex/complex64/benchmark/python/benchmark.py renamed to lib/node_modules/@stdlib/types/complex/float32/benchmark/python/benchmark.py

File renamed without changes.

0 commit comments

Comments
 (0)