Skip to content

Commit c1f50e2

Browse files
committed
Auto-generated commit
1 parent dfa91ff commit c1f50e2

2 files changed

Lines changed: 32 additions & 1 deletion

File tree

CHANGELOG.md

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

7-
## Unreleased (2026-06-18)
7+
## Unreleased (2026-06-19)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`882c6dd`](https://github.com/stdlib-js/stdlib/commit/882c6dd2a6d6740d82f607fb278dc157f708deb0) - update `blas/ext/base/ndarray` TypeScript declarations [(#12961)](https://github.com/stdlib-js/stdlib/pull/12961)
1314
- [`9bc3dc8`](https://github.com/stdlib-js/stdlib/commit/9bc3dc8b54f957ac3d0978cf51cbc22c1639716e) - add `scunone` to namespace
1415
- [`37e473f`](https://github.com/stdlib-js/stdlib/commit/37e473f40210e8eae7e786ba5b2e67e52c5e3fc6) - update `blas/ext/base/ndarray` TypeScript declarations [(#12944)](https://github.com/stdlib-js/stdlib/pull/12944)
1516
- [`bfaddc8`](https://github.com/stdlib-js/stdlib/commit/bfaddc8367ecd7beed039b7ccd3865445cc8a651) - add `blas/ext/base/ndarray/scunone` [(#12887)](https://github.com/stdlib-js/stdlib/pull/12887)
@@ -137,6 +138,7 @@
137138

138139
<details>
139140

141+
- [`882c6dd`](https://github.com/stdlib-js/stdlib/commit/882c6dd2a6d6740d82f607fb278dc157f708deb0) - **feat:** update `blas/ext/base/ndarray` TypeScript declarations [(#12961)](https://github.com/stdlib-js/stdlib/pull/12961) _(by stdlib-bot)_
140142
- [`118a1ea`](https://github.com/stdlib-js/stdlib/commit/118a1eaf28afc9be92abb582b8ca43439237d6a7) - **docs:** update namespace table of contents [(#12947)](https://github.com/stdlib-js/stdlib/pull/12947) _(by stdlib-bot)_
141143
- [`9bc3dc8`](https://github.com/stdlib-js/stdlib/commit/9bc3dc8b54f957ac3d0978cf51cbc22c1639716e) - **feat:** add `scunone` to namespace _(by Athan Reines)_
142144
- [`37e473f`](https://github.com/stdlib-js/stdlib/commit/37e473f40210e8eae7e786ba5b2e67e52c5e3fc6) - **feat:** update `blas/ext/base/ndarray` TypeScript declarations [(#12944)](https://github.com/stdlib-js/stdlib/pull/12944) _(by stdlib-bot)_

docs/types/index.d.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ import gzeroTo = require( '@stdlib/blas-ext-base-ndarray-gzero-to' );
9393
import saxpb = require( '@stdlib/blas-ext-base-ndarray-saxpb' );
9494
import saxpby = require( '@stdlib/blas-ext-base-ndarray-saxpby' );
9595
import scircshift = require( '@stdlib/blas-ext-base-ndarray-scircshift' );
96+
import scunone = require( '@stdlib/blas-ext-base-ndarray-scunone' );
9697
import scusum = require( '@stdlib/blas-ext-base-ndarray-scusum' );
9798
import scusumkbn = require( '@stdlib/blas-ext-base-ndarray-scusumkbn' );
9899
import scusumkbn2 = require( '@stdlib/blas-ext-base-ndarray-scusumkbn2' );
@@ -2186,6 +2187,34 @@ interface Namespace {
21862187
*/
21872188
scircshift: typeof scircshift;
21882189

2190+
/**
2191+
* Cumulatively tests whether every element in a one-dimensional single-precision floating-point ndarray is falsy.
2192+
*
2193+
* ## Notes
2194+
*
2195+
* - The function expects the following ndarrays:
2196+
*
2197+
* - a one-dimensional input ndarray.
2198+
* - a one-dimensional output ndarray.
2199+
*
2200+
* @param arrays - array-like object containing ndarrays
2201+
* @returns output ndarray
2202+
*
2203+
* @example
2204+
* var Float32Vector = require( '@stdlib/ndarray-vector-float32' );
2205+
* var BooleanVector = require( '@stdlib/ndarray-vector-bool' );
2206+
*
2207+
* var x = new Float32Vector( [ 0.0, 0.0, 1.0, 1.0 ] );
2208+
* var out = new BooleanVector( 4 );
2209+
*
2210+
* var z = ns.scunone( [ x, out ] );
2211+
* // returns <ndarray>[ true, true, false, false ]
2212+
*
2213+
* var bool = ( z === out );
2214+
* // returns true
2215+
*/
2216+
scunone: typeof scunone;
2217+
21892218
/**
21902219
* Computes the cumulative sum of a one-dimensional single-precision floating-point ndarray.
21912220
*

0 commit comments

Comments
 (0)