Skip to content

Commit b1edb30

Browse files
committed
Auto-generated commit
1 parent bf9be89 commit b1edb30

File tree

15 files changed

+18655
-25
lines changed

15 files changed

+18655
-25
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-07-06)
7+
## Unreleased (2025-07-11)
88

99
<section class="features">
1010

@@ -484,6 +484,7 @@ A total of 21 issues were closed in this release:
484484

485485
<details>
486486

487+
- [`e995411`](https://github.com/stdlib-js/stdlib/commit/e995411cf68fa5d1d0960ce0eff8d3dda3297cd8) - **test:** add tests to `ndarray/base/every-by` [(#7285)](https://github.com/stdlib-js/stdlib/pull/7285) _(by Muhammad Haris)_
487488
- [`15fa50d`](https://github.com/stdlib-js/stdlib/commit/15fa50ddc789259ce8c21fe70d85e26fbb54cf44) - **chore:** fix C lint errors [(#7568)](https://github.com/stdlib-js/stdlib/pull/7568) _(by zhanggy, Athan Reines)_
488489
- [`8df8042`](https://github.com/stdlib-js/stdlib/commit/8df804279a206bd3b8f2e2fd7016170836ca9381) - **fix:** add newly supported data types _(by Philipp Burckhardt)_
489490
- [`76ea5a8`](https://github.com/stdlib-js/stdlib/commit/76ea5a8e8d964f78aa953ae4822345d3c1e3a6ae) - **feat:** add missing tests to `ndarray/base/includes` [(#7304)](https://github.com/stdlib-js/stdlib/pull/7304) _(by Muhammad Haris, Athan Reines)_

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
4444
Debashis Maharana <debashismaharana7854@gmail.com>
4545
Deep Trivedi <128926685+thedeeppp@users.noreply.github.com>
4646
Deepak Singh <78257493+Deepak91168@users.noreply.github.com>
47+
Deepak Singh <negid0253@gmail.com>
4748
Desh Deepak Kant <118960904+DeshDeepakKant@users.noreply.github.com>
4849
Dev Goel <135586571+corsairier@users.noreply.github.com>
4950
Dhanyabad behera <110620935+dhanyabad11@users.noreply.github.com>
@@ -168,6 +169,7 @@ Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
168169
Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com>
169170
Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
170171
Shivam Ahir <11shivam00@gmail.com>
172+
Shivansh <114570926+shiv343@users.noreply.github.com>
171173
Shraddheya Shendre <shendreshraddheya@gmail.com>
172174
Shubh Mehta <93862397+Shubh942@users.noreply.github.com>
173175
Shubham Mishra <shubh622005@gmail.com>

base/every-by/test/test.0d.js

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,10 @@
2121
// MODULES //
2222

2323
var tape = require( 'tape' );
24-
var Float64Array = require( '@stdlib/array/float64' );
25-
var toAccessorArray = require( '@stdlib/array/base/to-accessor-array' );
2624
var Complex128 = require( '@stdlib/complex/float64/ctor' );
2725
var real = require( '@stdlib/complex/float64/real' );
2826
var imag = require( '@stdlib/complex/float64/imag' );
2927
var scalar2ndarray = require( './../../../from-scalar' );
30-
var ndarray = require( './../../../ctor' );
3128
var everyBy = require( './../lib' );
3229

3330

@@ -68,27 +65,6 @@ tape( 'the function tests whether every element in a 0-dimensional ndarray passe
6865
var actual;
6966
var x;
7067

71-
x = ndarray( 'generic', toAccessorArray( new Float64Array( [ 0.0 ] ) ), [], [ 0 ], 0, 'row-major' );
72-
73-
actual = everyBy( [ x ], clbk );
74-
t.strictEqual( actual, false, 'returns expected value' );
75-
76-
x = ndarray( 'generic', toAccessorArray( new Float64Array( [ 1.0 ] ) ), [], [ 0 ], 0, 'row-major' );
77-
78-
actual = everyBy( [ x ], clbk );
79-
t.strictEqual( actual, true, 'returns expected value' );
80-
81-
t.end();
82-
83-
function clbk( v ) {
84-
return v !== 0.0;
85-
}
86-
});
87-
88-
tape( 'the function tests whether every element in a 0-dimensional ndarray passes a test implemented by a predicate function (complex)', function test( t ) {
89-
var actual;
90-
var x;
91-
9268
x = scalar2ndarray( new Complex128( 0.0, 0.0 ), {
9369
'dtype': 'complex128'
9470
});

0 commit comments

Comments
 (0)