Skip to content

Commit 5b0dad3

Browse files
committed
Auto-generated commit
1 parent 4628542 commit 5b0dad3

5 files changed

Lines changed: 28 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
### Features
1212

13+
- [`9bc3dc8`](https://github.com/stdlib-js/stdlib/commit/9bc3dc8b54f957ac3d0978cf51cbc22c1639716e) - add `scunone` to namespace
14+
- [`7cdc092`](https://github.com/stdlib-js/stdlib/commit/7cdc09263464834df5e5e62f4f46feff4dc9c8f1) - add `gindexOfFalsy` and `sminheapSiftDown` to namespace
1315
- [`41808bf`](https://github.com/stdlib-js/stdlib/commit/41808bf84bd375fde4c3ed2484bfc306e6944104) - update `blas/ext/base` TypeScript declarations [(#12945)](https://github.com/stdlib-js/stdlib/pull/12945)
1416
- [`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)
1517
- [`a8c3544`](https://github.com/stdlib-js/stdlib/commit/a8c354429ab5aec4fd0c317b0536c79b4c365ca8) - add `blas/ext/base/sminheap-sift-down` [(#12939)](https://github.com/stdlib-js/stdlib/pull/12939)
@@ -394,6 +396,8 @@
394396

395397
<details>
396398

399+
- [`9bc3dc8`](https://github.com/stdlib-js/stdlib/commit/9bc3dc8b54f957ac3d0978cf51cbc22c1639716e) - **feat:** add `scunone` to namespace _(by Athan Reines)_
400+
- [`7cdc092`](https://github.com/stdlib-js/stdlib/commit/7cdc09263464834df5e5e62f4f46feff4dc9c8f1) - **feat:** add `gindexOfFalsy` and `sminheapSiftDown` to namespace _(by Athan Reines)_
397401
- [`41808bf`](https://github.com/stdlib-js/stdlib/commit/41808bf84bd375fde4c3ed2484bfc306e6944104) - **feat:** update `blas/ext/base` TypeScript declarations [(#12945)](https://github.com/stdlib-js/stdlib/pull/12945) _(by stdlib-bot)_
398402
- [`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)_
399403
- [`a8c3544`](https://github.com/stdlib-js/stdlib/commit/a8c354429ab5aec4fd0c317b0536c79b4c365ca8) - **feat:** add `blas/ext/base/sminheap-sift-down` [(#12939)](https://github.com/stdlib-js/stdlib/pull/12939) _(by Muhammad Haris)_

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1260,6 +1260,15 @@ setReadOnly( ns, 'gindexOf', require( '@stdlib/blas-ext-base-gindex-of' ) );
12601260
*/
12611261
setReadOnly( ns, 'gindexOfColumn', require( '@stdlib/blas-ext-base-gindex-of-column' ) );
12621262

1263+
/**
1264+
* @name gindexOfFalsy
1265+
* @memberof ns
1266+
* @readonly
1267+
* @type {Function}
1268+
* @see {@link module:@stdlib/blas/ext/base/gindex-of-falsy}
1269+
*/
1270+
setReadOnly( ns, 'gindexOfFalsy', require( '@stdlib/blas-ext-base-gindex-of-falsy' ) );
1271+
12631272
/**
12641273
* @name gindexOfRow
12651274
* @memberof ns
@@ -1989,6 +1998,15 @@ setReadOnly( ns, 'slastIndexOfRow', require( '@stdlib/blas-ext-base-slast-index-
19891998
*/
19901999
setReadOnly( ns, 'slinspace', require( '@stdlib/blas-ext-base-slinspace' ) );
19912000

2001+
/**
2002+
* @name sminheapSiftDown
2003+
* @memberof ns
2004+
* @readonly
2005+
* @type {Function}
2006+
* @see {@link module:@stdlib/blas/ext/base/sminheap-sift-down}
2007+
*/
2008+
setReadOnly( ns, 'sminheapSiftDown', require( '@stdlib/blas-ext-base-sminheap-sift-down' ) );
2009+
19922010
/**
19932011
* @name smskrev
19942012
* @memberof ns

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@
172172
"@stdlib/blas-ext-base-gfind-last-index": "^0.1.1",
173173
"@stdlib/blas-ext-base-gindex-of": "^0.1.1",
174174
"@stdlib/blas-ext-base-gindex-of-column": "github:stdlib-js/blas-ext-base-gindex-of-column#main",
175+
"@stdlib/blas-ext-base-gindex-of-falsy": "github:stdlib-js/blas-ext-base-gindex-of-falsy#main",
175176
"@stdlib/blas-ext-base-gindex-of-row": "^0.1.1",
176177
"@stdlib/blas-ext-base-gindex-of-truthy": "github:stdlib-js/blas-ext-base-gindex-of-truthy#main",
177178
"@stdlib/blas-ext-base-gjoin": "^0.1.1",
@@ -253,6 +254,7 @@
253254
"@stdlib/blas-ext-base-slast-index-of": "^0.1.1",
254255
"@stdlib/blas-ext-base-slast-index-of-row": "github:stdlib-js/blas-ext-base-slast-index-of-row#main",
255256
"@stdlib/blas-ext-base-slinspace": "^0.1.1",
257+
"@stdlib/blas-ext-base-sminheap-sift-down": "github:stdlib-js/blas-ext-base-sminheap-sift-down#main",
256258
"@stdlib/blas-ext-base-smskrev": "github:stdlib-js/blas-ext-base-smskrev#main",
257259
"@stdlib/blas-ext-base-snancount": "github:stdlib-js/blas-ext-base-snancount#main",
258260
"@stdlib/blas-ext-base-snansum": "^0.3.1",
@@ -438,6 +440,7 @@
438440
"@stdlib/blas-ext-base-ndarray-saxpb": "github:stdlib-js/blas-ext-base-ndarray-saxpb#main",
439441
"@stdlib/blas-ext-base-ndarray-saxpby": "github:stdlib-js/blas-ext-base-ndarray-saxpby#main",
440442
"@stdlib/blas-ext-base-ndarray-scircshift": "github:stdlib-js/blas-ext-base-ndarray-scircshift#main",
443+
"@stdlib/blas-ext-base-ndarray-scunone": "github:stdlib-js/blas-ext-base-ndarray-scunone#main",
441444
"@stdlib/blas-ext-base-ndarray-scusum": "^0.1.1",
442445
"@stdlib/blas-ext-base-ndarray-scusumkbn": "^0.1.1",
443446
"@stdlib/blas-ext-base-ndarray-scusumkbn2": "^0.1.1",

0 commit comments

Comments
 (0)