Skip to content

Commit 93cf4fb

Browse files
committed
Auto-generated commit
1 parent eddf7e4 commit 93cf4fb

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

CHANGELOG.md

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

7-
## Unreleased (2026-02-16)
7+
## Unreleased (2026-02-25)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`a448775`](https://github.com/stdlib-js/stdlib/commit/a44877524a5d66af917bdac7d3e2ea7e74ff6329) - **docs:** update `blas/ext/base/ndarray` TypeScript declarations [(#10477)](https://github.com/stdlib-js/stdlib/pull/10477) _(by stdlib-bot)_
16+
- [`9f7e9c8`](https://github.com/stdlib-js/stdlib/commit/9f7e9c8319f1557ae399ddde2f912ef86361a9f9) - **docs:** improve doctests for ndarray instances in `ndarray/scusum` [(#10403)](https://github.com/stdlib-js/stdlib/pull/10403) _(by AyushiJain18270)_
17+
- [`0e5ccc5`](https://github.com/stdlib-js/stdlib/commit/0e5ccc5a2d4faa9df26004b4931020c4c38eff5e) - **bench:** use string interpolation in `blas/ext/base/ndarray/gsumkbn` [(#10353)](https://github.com/stdlib-js/stdlib/pull/10353) _(by AyushiJain18270)_
18+
- [`f834c92`](https://github.com/stdlib-js/stdlib/commit/f834c92ade215691ff1d2d5cf36894e8ed697ffe) - **bench:** refactor to use string interpolation in `blas/ext/base/ndarray/dcusumpw` [(#10329)](https://github.com/stdlib-js/stdlib/pull/10329) _(by AyushiJain18270)_
19+
- [`70190d9`](https://github.com/stdlib-js/stdlib/commit/70190d95cd081cf661a70f834828a0b93bef5288) - **bench:** refactor to use string interpolation in `blas/ext/base/ndarray/dcusumkbn` [(#10296)](https://github.com/stdlib-js/stdlib/pull/10296) _(by AyushiJain18270)_
1520
- [`17fd10b`](https://github.com/stdlib-js/stdlib/commit/17fd10bc90d3cb7469ad3c2e4713363b7097eb42) - **docs:** update `blas/ext/base/ndarray` TypeScript declarations [(#10310)](https://github.com/stdlib-js/stdlib/pull/10310) _(by stdlib-bot)_
1621
- [`9df57d4`](https://github.com/stdlib-js/stdlib/commit/9df57d4d7a7383c849ad00e3cc4335888b6f2197) - **docs:** improve doctests for ndarray instances in `ndarray/gcusum` [(#10250)](https://github.com/stdlib-js/stdlib/pull/10250) _(by AyushiJain18270)_
1722

docs/types/index.d.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,6 @@ interface Namespace {
469469
*
470470
* @example
471471
* var Float32Array = require( '@stdlib/array-float32' );
472-
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
473472
* var scalar2ndarray = require( '@stdlib/ndarray-base-from-scalar' );
474473
* var ndarray = require( '@stdlib/ndarray-base-ctor' );
475474
*
@@ -482,13 +481,10 @@ interface Namespace {
482481
* var initial = scalar2ndarray( 0.0, 'float32', 'row-major' );
483482
*
484483
* var v = ns.scusum( [ x, y, initial ] );
485-
* // returns <ndarray>
484+
* // returns <ndarray>[ 1.0, 4.0, 8.0, 10.0 ]
486485
*
487486
* var bool = ( v === y );
488487
* // returns true
489-
*
490-
* var arr = ndarray2array( v );
491-
* // returns [ 1.0, 4.0, 8.0, 10.0 ]
492488
*/
493489
scusum: typeof scusum;
494490

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@
172172
"@stdlib/random-base-bernoulli": "^0.2.2",
173173
"@stdlib/random-base-discrete-uniform": "^0.2.2",
174174
"@stdlib/random-base-uniform": "^0.2.3",
175+
"@stdlib/string-format": "^0.2.3",
175176
"@stdlib/utils-keys": "^0.2.3",
176177
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
177178
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)