Skip to content

Commit 040474a

Browse files
committed
Auto-generated commit
1 parent 992c9e3 commit 040474a

Some content is hidden

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

58 files changed

+104
-104
lines changed

README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ var len = arr.length;
133133
Creates a 128-bit complex number array from an array-like object or iterable.
134134

135135
```javascript
136-
var Complex128 = require( '@stdlib/complex-float64' );
136+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
137137

138138
// From an array of interleaved real and imaginary components:
139139
var arr1 = new Complex128Array( [ 1.0, -1.0, 2.0, -2.0 ] );
@@ -293,7 +293,7 @@ var len = arr.length;
293293
Creates a new 128-bit complex number array from an array-like object or an iterable.
294294

295295
```javascript
296-
var Complex128 = require( '@stdlib/complex-float64' );
296+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
297297

298298
// Create an array from interleaved real and imaginary components:
299299
var arr = Complex128Array.from( [ 1.0, -1.0 ] );
@@ -377,7 +377,7 @@ if ( ITERATOR_SYMBOL === null ) {
377377
To invoke a function for each `src` value, provide a callback function. If `src` is an iterable or an array-like object containing complex numbers, the callback must return either a complex number
378378

379379
```javascript
380-
var Complex128 = require( '@stdlib/complex-float64' );
380+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
381381
var real = require( '@stdlib/complex-real' );
382382
var imag = require( '@stdlib/complex-imag' );
383383

@@ -409,7 +409,7 @@ or an array-like object containing real and imaginary components
409409

410410
```javascript
411411
var Float64Array = require( '@stdlib/array-float64' );
412-
var Complex128 = require( '@stdlib/complex-float64' );
412+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
413413
var real = require( '@stdlib/complex-real' );
414414
var imag = require( '@stdlib/complex-imag' );
415415

@@ -458,7 +458,7 @@ If `src` is an array-like object containing interleaved real and imaginary compo
458458

459459
```javascript
460460
var Float64Array = require( '@stdlib/array-float64' );
461-
var Complex128 = require( '@stdlib/complex-float64' );
461+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
462462
var real = require( '@stdlib/complex-real' );
463463
var imag = require( '@stdlib/complex-imag' );
464464

@@ -494,7 +494,7 @@ A callback function is provided two arguments:
494494
To set the callback execution context, provide a `thisArg`.
495495

496496
```javascript
497-
var Complex128 = require( '@stdlib/complex-float64' );
497+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
498498
var real = require( '@stdlib/complex-real' );
499499
var imag = require( '@stdlib/complex-imag' );
500500

@@ -529,7 +529,7 @@ var n = ctx.count;
529529
Creates a new 128-bit complex number array from a variable number of arguments.
530530

531531
```javascript
532-
var Complex128 = require( '@stdlib/complex-float64' );
532+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
533533

534534
var arr = Complex128Array.of( 1.0, -1.0, 2.0, -2.0 );
535535
// returns <Complex128Array>
@@ -604,7 +604,7 @@ z = arr.at( -100 );
604604
Copies a sequence of elements within the array starting at `start` and ending at `end` (non-inclusive) to the position starting at `target`.
605605

606606
```javascript
607-
var Complex128 = require( '@stdlib/complex-float64' );
607+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
608608
var real = require( '@stdlib/complex-real' );
609609
var imag = require( '@stdlib/complex-imag' );
610610

@@ -663,7 +663,7 @@ im = imag( z );
663663
By default, `end` equals the number of array elements (i.e., one more than the last array index). To limit the sequence length, provide an `end` argument.
664664

665665
```javascript
666-
var Complex128 = require( '@stdlib/complex-float64' );
666+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
667667
var real = require( '@stdlib/complex-real' );
668668
var imag = require( '@stdlib/complex-imag' );
669669

@@ -722,7 +722,7 @@ im = imag( z );
722722
When a `target`, `start`, and/or `end` index is negative, the respective index is determined relative to the last array element. The following example achieves the same behavior as the previous example:
723723

724724
```javascript
725-
var Complex128 = require( '@stdlib/complex-float64' );
725+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
726726
var real = require( '@stdlib/complex-real' );
727727
var imag = require( '@stdlib/complex-imag' );
728728

@@ -785,7 +785,7 @@ im = imag( z );
785785
Returns an iterator for iterating over array key-value pairs.
786786

787787
```javascript
788-
var Complex128 = require( '@stdlib/complex-float64' );
788+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
789789
var real = require( '@stdlib/complex-real' );
790790
var imag = require( '@stdlib/complex-imag' );
791791

@@ -896,7 +896,7 @@ var count = context.count;
896896
Returns a modified typed array filled with a fill value.
897897

898898
```javascript
899-
var Complex128 = require( '@stdlib/complex-float64' );
899+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
900900
var real = require( '@stdlib/complex-real' );
901901
var imag = require( '@stdlib/complex-imag' );
902902

@@ -969,7 +969,7 @@ im = imag( z );
969969
When a `start` and/or `end` index is negative, the respective index is determined relative to the last array element.
970970

971971
```javascript
972-
var Complex128 = require( '@stdlib/complex-float64' );
972+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
973973
var real = require( '@stdlib/complex-real' );
974974
var imag = require( '@stdlib/complex-imag' );
975975

@@ -1343,7 +1343,7 @@ var count = context.count;
13431343
Invokes a function once for each array element.
13441344

13451345
```javascript
1346-
var Complex128 = require( '@stdlib/complex-float64' );
1346+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
13471347

13481348
function log( v, i ) {
13491349
console.log( '%s: %s', i, v.toString() );
@@ -1373,7 +1373,7 @@ The invoked function is provided three arguments:
13731373
To set the function execution context, provide a `thisArg`.
13741374

13751375
```javascript
1376-
var Complex128 = require( '@stdlib/complex-float64' );
1376+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
13771377

13781378
function fcn( v, i ) {
13791379
this.count += 1;
@@ -1444,7 +1444,7 @@ var z = arr.get( 100 );
14441444
Returns a boolean indicating whether an array includes a provided value.
14451445

14461446
```javascript
1447-
var Complex128 = require( '@stdlib/complex-float64' );
1447+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
14481448

14491449
var arr = new Complex128Array( 5 );
14501450

@@ -1471,7 +1471,7 @@ bool = arr.includes( new Complex128( 4.0, -4.0 ), -3 );
14711471
Returns the first index at which a given element can be found.
14721472

14731473
```javascript
1474-
var Complex128 = require( '@stdlib/complex-float64' );
1474+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
14751475

14761476
var arr = new Complex128Array( 5 );
14771477

@@ -1494,7 +1494,7 @@ idx = arr.indexOf( new Complex128( 4.0, -4.0 ), -3 );
14941494
If `searchElement` is not present in the array, the method returns `-1`.
14951495

14961496
```javascript
1497-
var Complex128 = require( '@stdlib/complex-float64' );
1497+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
14981498

14991499
var arr = new Complex128Array( 5 );
15001500

@@ -1574,7 +1574,7 @@ The returned [iterator][mdn-iterator-protocol] protocol-compliant object has the
15741574
Returns the last index at which a given element can be found.
15751575

15761576
```javascript
1577-
var Complex128 = require( '@stdlib/complex-float64' );
1577+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
15781578

15791579
var arr = new Complex128Array( 5 );
15801580

@@ -1597,7 +1597,7 @@ idx = arr.lastIndexOf( new Complex128( 4.0, -4.0 ), -1 );
15971597
If `searchElement` is not present in the array, the method returns `-1`.
15981598

15991599
```javascript
1600-
var Complex128 = require( '@stdlib/complex-float64' );
1600+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
16011601

16021602
var arr = new Complex128Array( 5 );
16031603

@@ -1618,7 +1618,7 @@ idx = arr.lastIndexOf( new Complex128( 2.0, -2.0 ), 0 );
16181618
Returns a new array with each element being the result of a provided callback function.
16191619

16201620
```javascript
1621-
var Complex128 = require( '@stdlib/complex-float64' );
1621+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
16221622
var real = require( '@stdlib/complex-real' );
16231623
var imag = require( '@stdlib/complex-imag' );
16241624

@@ -1655,7 +1655,7 @@ The callback function is provided three arguments:
16551655
To set the function execution context, provide a `thisArg`.
16561656

16571657
```javascript
1658-
var Complex128 = require( '@stdlib/complex-float64' );
1658+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
16591659
var real = require( '@stdlib/complex-real' );
16601660
var imag = require( '@stdlib/complex-imag' );
16611661

@@ -1844,7 +1844,7 @@ im = imag( z );
18441844
Sets one or more array elements.
18451845

18461846
```javascript
1847-
var Complex128 = require( '@stdlib/complex-float64' );
1847+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
18481848
var real = require( '@stdlib/complex-real' );
18491849
var imag = require( '@stdlib/complex-imag' );
18501850

@@ -1877,7 +1877,7 @@ im = imag( z );
18771877
By default, the method sets array elements starting at position (index) `i = 0`. To set elements starting elsewhere in the array, provide an index argument `i`.
18781878

18791879
```javascript
1880-
var Complex128 = require( '@stdlib/complex-float64' );
1880+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
18811881
var real = require( '@stdlib/complex-real' );
18821882
var imag = require( '@stdlib/complex-imag' );
18831883

@@ -1910,7 +1910,7 @@ im = imag( z );
19101910
In addition to providing a complex number, to set one or more array elements, provide an array-like object containing either complex numbers
19111911

19121912
```javascript
1913-
var Complex128 = require( '@stdlib/complex-float64' );
1913+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
19141914
var real = require( '@stdlib/complex-real' );
19151915
var imag = require( '@stdlib/complex-imag' );
19161916

@@ -2523,7 +2523,7 @@ Returns a new typed array with the element at a provided index replaced with a p
25232523
```javascript
25242524
var real = require( '@stdlib/complex-real' );
25252525
var imag = require( '@stdlib/complex-imag' );
2526-
var Complex128 = require( '@stdlib/complex-float64' );
2526+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
25272527

25282528
var arr = new Complex128Array( 3 );
25292529

@@ -2578,7 +2578,7 @@ var im = imag( z );
25782578
<!-- eslint no-undef: "error" -->
25792579

25802580
```javascript
2581-
var Complex128 = require( '@stdlib/complex-float64' );
2581+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
25822582
var Float64Array = require( '@stdlib/array-float64' );
25832583
var logEach = require( '@stdlib/console-log-each' );
25842584
var Complex128Array = require( '@stdlib/array-complex128' );

benchmark/benchmark.at.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var bench = require( '@stdlib/bench-harness' );
24-
var Complex128 = require( '@stdlib/complex-float64' );
24+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
2525
var isComplex128 = require( '@stdlib/assert-is-complex128' );
2626
var pkg = require( './../package.json' ).name;
2727
var Complex128Array = require( './../lib' );

benchmark/benchmark.every.length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var bench = require( '@stdlib/bench-harness' );
2424
var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
2525
var pow = require( '@stdlib/math-base-special-pow' );
26-
var Complex128 = require( '@stdlib/complex-float64' );
26+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
2727
var real = require( '@stdlib/complex-real' );
2828
var imag = require( '@stdlib/complex-imag' );
2929
var pkg = require( './../package.json' ).name;

benchmark/benchmark.fill.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var bench = require( '@stdlib/bench-harness' );
24-
var Complex128 = require( '@stdlib/complex-float64' );
24+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
2525
var isComplex128Array = require( '@stdlib/assert-is-complex128array' );
2626
var pkg = require( './../package.json' ).name;
2727
var Complex128Array = require( './../lib' );

benchmark/benchmark.fill.length.js

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

2323
var bench = require( '@stdlib/bench-harness' );
2424
var pow = require( '@stdlib/math-base-special-pow' );
25-
var Complex128 = require( '@stdlib/complex-float64' );
25+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
2626
var isComplex128Array = require('@stdlib/assert-is-complex128array');
2727
var pkg = require( './../package.json' ).name;
2828
var Complex128Array = require( './../lib' );

benchmark/benchmark.filter.length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var bench = require( '@stdlib/bench-harness' );
2424
var isComplex128Array = require( '@stdlib/assert-is-complex128array' );
2525
var pow = require( '@stdlib/math-base-special-pow' );
26-
var Complex128 = require( '@stdlib/complex-float64' );
26+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
2727
var real = require( '@stdlib/complex-real' );
2828
var imag = require( '@stdlib/complex-imag' );
2929
var pkg = require( './../package.json' ).name;

benchmark/benchmark.find.length.js

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

2323
var bench = require( '@stdlib/bench-harness' );
2424
var pow = require( '@stdlib/math-base-special-pow' );
25-
var Complex128 = require( '@stdlib/complex-float64' );
25+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
2626
var isComplex128 = require( '@stdlib/assert-is-complex128' );
2727
var real = require( '@stdlib/complex-real' );
2828
var imag = require( '@stdlib/complex-imag' );

benchmark/benchmark.find_index.length.js

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

2323
var bench = require( '@stdlib/bench-harness' );
2424
var pow = require( '@stdlib/math-base-special-pow' );
25-
var Complex128 = require( '@stdlib/complex-float64' );
25+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
2626
var isInteger = require( '@stdlib/assert-is-integer' ).isPrimitive;
2727
var real = require( '@stdlib/complex-real' );
2828
var imag = require( '@stdlib/complex-imag' );

benchmark/benchmark.find_last.length.js

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

2323
var bench = require( '@stdlib/bench-harness' );
2424
var pow = require( '@stdlib/math-base-special-pow' );
25-
var Complex128 = require( '@stdlib/complex-float64' );
25+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
2626
var isComplex128 = require( '@stdlib/assert-is-complex128' );
2727
var real = require( '@stdlib/complex-real' );
2828
var imag = require( '@stdlib/complex-imag' );

benchmark/benchmark.find_last_index.length.js

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

2323
var bench = require( '@stdlib/bench-harness' );
2424
var pow = require( '@stdlib/math-base-special-pow' );
25-
var Complex128 = require( '@stdlib/complex-float64' );
25+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
2626
var isInteger = require( '@stdlib/assert-is-integer' ).isPrimitive;
2727
var real = require( '@stdlib/complex-real' );
2828
var imag = require( '@stdlib/complex-imag' );

0 commit comments

Comments
 (0)