Skip to content

Commit f35f3f8

Browse files
committed
Auto-generated commit
1 parent 482aef2 commit f35f3f8

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,7 @@ A total of 7 people contributed to this release. Thank you to the following cont
559559

560560
<details>
561561

562+
- [`7b02c16`](https://github.com/stdlib-js/stdlib/commit/7b02c160d8c9ecf6742ea0178c733f938e0c94c4) - **chore:** minor clean-up _(by Philipp Burckhardt)_
562563
- [`6207381`](https://github.com/stdlib-js/stdlib/commit/62073818e83d5bdd87b2b8ffea18a43767f1ae29) - **chore:** minor clean-up _(by Philipp Burckhardt)_
563564
- [`bffda37`](https://github.com/stdlib-js/stdlib/commit/bffda37bf1104bc6e62776ee811c76873edf5461) - **refactor:** use `array/little-endian-factory` _(by Athan Reines)_
564565
- [`5a2c12b`](https://github.com/stdlib-js/stdlib/commit/5a2c12bd3973e3b3a6f5e971ecac17c391570e60) - **feat:** add `Float64ArrayFE` and `Float64ArrayLE` to namespace _(by Athan Reines)_

CONTRIBUTORS

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Christopher Dambamuromo <[email protected]>
2121
2222
Daniel Killenberger <[email protected]>
2323
Daniel Yu <[email protected]>
24-
DebashisMaharana <[email protected].com>
24+
Debashis Maharana <debashismaharana7854@gmail.com>
2525
Dominik Moritz <[email protected]>
2626
Dorrin Sotoudeh <[email protected]>
2727
EuniceSim142 <[email protected]>

base/cusome/lib/assign.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function indexed( x, n, y, stride, offset ) {
7070
}
7171

7272
/**
73-
* Cumulatively tests whether at least `n` array elements in accessor array are truthy.
73+
* Cumulatively tests whether at least `n` array elements in an accessor array are truthy.
7474
*
7575
* @private
7676
* @param {Object} x - input array object
@@ -128,15 +128,14 @@ function accessors( x, n, y, stride, offset ) {
128128
flg = true;
129129
}
130130
}
131-
132131
yset( ydata, io, flg );
133132
io += stride;
134133
}
135134
return ydata;
136135
}
137136

138137
/**
139-
* Cumulatively tests whether at least `n` array elements in a provided complex number are truthy and assigns results to provided output array.
138+
* Cumulatively tests whether at least `n` array elements in a provided complex number array are truthy.
140139
*
141140
* @private
142141
* @param {Collection} x - array containing interleaved real and imaginary components

base/cusome/test/test.assign.js

+5-9
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* limitations under the License.
1717
*/
1818

19+
/* eslint-disable max-len */
20+
1921
'use strict';
2022

2123
// MODULES //
@@ -166,9 +168,7 @@ tape( 'the function cumulatively tests whether at least `n` array elements are t
166168
y = [ false, null, false, null, false, null, false, null, false, null ];
167169

168170
actual = cusome( x, 2, y, 2, 0 );
169-
expected = [
170-
false, null, false, null, false, null, false, null, false, null
171-
];
171+
expected = [ false, null, false, null, false, null, false, null, false, null ];
172172

173173
t.strictEqual( actual, y, 'returns expected value' );
174174
t.deepEqual( actual, expected, 'returns expected value' );
@@ -209,9 +209,7 @@ tape( 'the function cumulatively tests whether at least `n` array elements are t
209209
var x;
210210
var y;
211211

212-
x = new Complex128Array([
213-
1.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0
214-
]);
212+
x = new Complex128Array([ 1.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0 ]);
215213
y = [ false, true, false, true, false ];
216214

217215
actual = cusome( x, 1, y, 1, 0 );
@@ -220,9 +218,7 @@ tape( 'the function cumulatively tests whether at least `n` array elements are t
220218
t.strictEqual( actual, y, 'returns expected value' );
221219
t.deepEqual( actual, expected, 'returns expected value' );
222220

223-
x = new Complex128Array([
224-
0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0
225-
]);
221+
x = new Complex128Array([ 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ]);
226222
y = [ false, null, false, null, false, null, false, null, false, null ];
227223

228224
actual = cusome( x, 2, y, 2, 0 );

0 commit comments

Comments
 (0)