Skip to content

Commit d01116c

Browse files
committed
Auto-generated commit
1 parent 1d48cef commit d01116c

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

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+
- [`aacc13a`](https://github.com/stdlib-js/stdlib/commit/aacc13a91e7131c5829cdb3622990a92805aabc9) - add `dsort` to namespace
14+
- [`56329f6`](https://github.com/stdlib-js/stdlib/commit/56329f6843adb81d057638457604f1442db76484) - add `ssort` to namespace
1315
- [`fafa2d5`](https://github.com/stdlib-js/stdlib/commit/fafa2d535bd201a047b251afdb6aaa096b998961) - add `blas/ext/base/ndarray/ssort` [(#11484)](https://github.com/stdlib-js/stdlib/pull/11484)
1416
- [`54aee70`](https://github.com/stdlib-js/stdlib/commit/54aee70f85a87f79c6b17e4a8cc13a1549a565ed) - add `ssort` to namespace
1517
- [`4e5c850`](https://github.com/stdlib-js/stdlib/commit/4e5c85028b82e98217bfe1e1ae6f946991057a5d) - update `blas/ext` TypeScript declarations [(#11464)](https://github.com/stdlib-js/stdlib/pull/11464)
@@ -861,6 +863,8 @@ A total of 57 issues were closed in this release:
861863

862864
<details>
863865

866+
- [`aacc13a`](https://github.com/stdlib-js/stdlib/commit/aacc13a91e7131c5829cdb3622990a92805aabc9) - **feat:** add `dsort` to namespace _(by Athan Reines)_
867+
- [`56329f6`](https://github.com/stdlib-js/stdlib/commit/56329f6843adb81d057638457604f1442db76484) - **feat:** add `ssort` to namespace _(by Athan Reines)_
864868
- [`fafa2d5`](https://github.com/stdlib-js/stdlib/commit/fafa2d535bd201a047b251afdb6aaa096b998961) - **feat:** add `blas/ext/base/ndarray/ssort` [(#11484)](https://github.com/stdlib-js/stdlib/pull/11484) _(by Muhammad Haris, Athan Reines)_
865869
- [`3b2fa8f`](https://github.com/stdlib-js/stdlib/commit/3b2fa8f05fd9bd37f3a7f71f3d5b4ff0f60557e9) - **docs:** update descriptions _(by Athan Reines)_
866870
- [`328ca77`](https://github.com/stdlib-js/stdlib/commit/328ca7797c1446568242d8bbd510129396fe3af0) - **docs:** fix notes _(by Athan Reines)_

ext/base/ndarray/lib/index.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,15 @@ setReadOnly( ns, 'dnansumpw', require( './../../../../ext/base/ndarray/dnansumpw
207207
*/
208208
setReadOnly( ns, 'doneTo', require( './../../../../ext/base/ndarray/done-to' ) );
209209

210+
/**
211+
* @name dsort
212+
* @memberof ns
213+
* @readonly
214+
* @type {Function}
215+
* @see {@link module:@stdlib/blas/ext/base/ndarray/dsort}
216+
*/
217+
setReadOnly( ns, 'dsort', require( './../../../../ext/base/ndarray/dsort' ) );
218+
210219
/**
211220
* @name dsorthp
212221
* @memberof ns
@@ -657,6 +666,15 @@ setReadOnly( ns, 'snansumpw', require( './../../../../ext/base/ndarray/snansumpw
657666
*/
658667
setReadOnly( ns, 'soneTo', require( './../../../../ext/base/ndarray/sone-to' ) );
659668

669+
/**
670+
* @name ssort
671+
* @memberof ns
672+
* @readonly
673+
* @type {Function}
674+
* @see {@link module:@stdlib/blas/ext/base/ndarray/ssort}
675+
*/
676+
setReadOnly( ns, 'ssort', require( './../../../../ext/base/ndarray/ssort' ) );
677+
660678
/**
661679
* @name ssorthp
662680
* @memberof ns

0 commit comments

Comments
 (0)