Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jul 7, 2024
1 parent aa272e6 commit f4d6b9c
Show file tree
Hide file tree
Showing 14 changed files with 20 additions and 19 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-07-01)
## Unreleased (2024-07-07)

<section class="features">

Expand Down Expand Up @@ -38,6 +38,7 @@

<details>

- [`659f752`](https://github.com/stdlib-js/stdlib/commit/659f752db18317bf5fc237fdbcad0d74b61e1ed9) - **style:** add missing spaces _(by Philipp Burckhardt)_
- [`6b0e763`](https://github.com/stdlib-js/stdlib/commit/6b0e763f6763fcad684f7cc82bb3300837dad71b) - **docs:** update example and add return description [(#2489)](https://github.com/stdlib-js/stdlib/pull/2489) _(by Jaysukh Makvana)_
- [`61c5609`](https://github.com/stdlib-js/stdlib/commit/61c5609ba30f3b07cd97089746a5dca25a614d94) - **docs:** fix examples in REPL documentation for complex number arrays [(#2431)](https://github.com/stdlib-js/stdlib/pull/2431) _(by Jaysukh Makvana)_
- [`cc06b5c`](https://github.com/stdlib-js/stdlib/commit/cc06b5c8c67a1c8d1022920273535b29e5abf550) - **fix:** add missing generic parameter _(by Athan Reines)_
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.fill.length.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
var bench = require( '@stdlib/bench-harness' );
var pow = require( '@stdlib/math-base-special-pow' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var isComplex64Array = require('@stdlib/assert-is-complex64array');
var isComplex64Array = require( '@stdlib/assert-is-complex64array' );
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );

Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.keys.length.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
var bench = require( '@stdlib/bench-harness' );
var pow = require( '@stdlib/math-base-special-pow' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var isIteratorLike = require('@stdlib/assert-is-iterator-like');
var isIteratorLike = require( '@stdlib/assert-is-iterator-like' );
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );

Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.map.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var bench = require( '@stdlib/bench-harness' );
var isComplex64Array = require( '@stdlib/assert-is-complex64array' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );
var Complex64 = require('@stdlib/complex-float32-ctor');
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );

Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.reduce.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

var bench = require( '@stdlib/bench-harness' );
var caddf = require( '@stdlib/math-base-ops-caddf' );
var isComplexLike = require('@stdlib/assert-is-complex-like');
var isComplexLike = require( '@stdlib/assert-is-complex-like' );
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );

Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.reduce.length.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
var bench = require( '@stdlib/bench-harness' );
var pow = require( '@stdlib/math-base-special-pow' );
var caddf = require( '@stdlib/math-base-ops-caddf' );
var isComplexLike = require('@stdlib/assert-is-complex-like');
var isComplexLike = require( '@stdlib/assert-is-complex-like' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.values.length.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
var bench = require( '@stdlib/bench-harness' );
var pow = require( '@stdlib/math-base-special-pow' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var isIteratorLike = require('@stdlib/assert-is-iterator-like');
var isIteratorLike = require( '@stdlib/assert-is-iterator-like' );
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );

Expand Down
2 changes: 1 addition & 1 deletion test/test.every.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ tape( 'the method supports providing an execution context', function test( t ) {
bool = arr.every( predicate, ctx );

t.strictEqual( bool, true, 'returns expected value' );
t.strictEqual( ctx.count, 3, 'returns expected value');
t.strictEqual( ctx.count, 3, 'returns expected value' );

t.end();

Expand Down
6 changes: 3 additions & 3 deletions test/test.find.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ tape( 'the method supports providing an execution context', function test( t ) {
arr = new Complex64Array( [ 1.0, -1.0, 2.0, -2.0, 3.0, 3.0 ] );
z = arr.find( predicate, ctx );

t.strictEqual( realf( z ), 3, 'returns expected value');
t.strictEqual( imagf( z ), 3, 'returns expected value');
t.strictEqual( ctx.count, 3, 'returns expected value');
t.strictEqual( realf( z ), 3, 'returns expected value' );
t.strictEqual( imagf( z ), 3, 'returns expected value' );
t.strictEqual( ctx.count, 3, 'returns expected value' );

t.end();

Expand Down
6 changes: 3 additions & 3 deletions test/test.find_last.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ tape( 'the method supports providing an execution context', function test( t ) {
arr = new Complex64Array( [ 1.0, -1.0, 2.0, -2.0, 3.0, 3.0 ] );
z = arr.findLast( predicate, ctx );

t.strictEqual( realf( z ), 3, 'returns expected value');
t.strictEqual( imagf( z ), 3, 'returns expected value');
t.strictEqual( ctx.count, 1, 'returns expected value');
t.strictEqual( realf( z ), 3, 'returns expected value' );
t.strictEqual( imagf( z ), 3, 'returns expected value' );
t.strictEqual( ctx.count, 1, 'returns expected value' );

t.end();

Expand Down
2 changes: 1 addition & 1 deletion test/test.for_each.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var tape = require( 'tape' );
var hasOwnProp = require( '@stdlib/assert-has-own-property' );
var isFunction = require( '@stdlib/assert-is-function' );
var reinterpret64 = require( '@stdlib/strided-base-reinterpret-complex64' );
var isComplex64 = require('@stdlib/assert-is-complex64');
var isComplex64 = require( '@stdlib/assert-is-complex64' );
var Complex64Array = require( './../lib' );


Expand Down
2 changes: 1 addition & 1 deletion test/test.map.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var reinterpret64 = require( '@stdlib/strided-base-reinterpret-complex64' );
var instanceOf = require( '@stdlib/assert-instance-of' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );
var Complex64 = require('@stdlib/complex-float32-ctor');
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var Float32Array = require( '@stdlib/array-float32' );
var Complex64Array = require( './../lib' );

Expand Down
2 changes: 1 addition & 1 deletion test/test.reduce.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var caddf = require( '@stdlib/math-base-ops-caddf' );
var instanceOf = require( '@stdlib/assert-instance-of' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );
var Complex64 = require('@stdlib/complex-float32-ctor');
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var Complex64Array = require( './../lib' );


Expand Down
4 changes: 2 additions & 2 deletions test/test.some.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ tape( 'the method supports providing an execution context', function test( t ) {
bool = arr.some( predicate, ctx );

t.strictEqual( bool, true, 'returns expected value' );
t.strictEqual( ctx.count, 3, 'returns expected value');
t.strictEqual( ctx.count, 3, 'returns expected value' );

t.end();

Expand All @@ -186,7 +186,7 @@ tape( 'the method stops executing upon encountering the first element which pass
bool = arr.some( predicate, ctx );

t.strictEqual( bool, true, 'returns expected value' );
t.strictEqual( ctx.count, 1, 'returns expected value');
t.strictEqual( ctx.count, 1, 'returns expected value' );

t.end();

Expand Down

0 comments on commit f4d6b9c

Please sign in to comment.