Skip to content

Commit f829b44

Browse files
committed
Auto-generated commit
1 parent d403b5a commit f829b44

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1126,6 +1126,7 @@ A total of 61 issues were closed in this release:
11261126

11271127
<details>
11281128

1129+
- [`c26d8b5`](https://github.com/stdlib-js/stdlib/commit/c26d8b58bd7f8254b6db66b8458128bed8e4beab) - **refactor:** remove redundant generic constraint in `blas/ext/base/ndarray/gsort` [(#12545)](https://github.com/stdlib-js/stdlib/pull/12545) _(by Philipp Burckhardt)_
11291130
- [`f766a24`](https://github.com/stdlib-js/stdlib/commit/f766a2481ba05b540c57b8c058fe2ce399f52495) - **refactor:** use `strideX`/`offsetX` parameter names in `blas/ext/base/ssortins` [(#12541)](https://github.com/stdlib-js/stdlib/pull/12541) _(by Philipp Burckhardt)_
11301131
- [`608e415`](https://github.com/stdlib-js/stdlib/commit/608e415c415a9d60e843d8a32043f3257195a11d) - **fix:** rename interface to PascalCase `LastIndexOf` in `blas/ext/last-index-of` [(#12544)](https://github.com/stdlib-js/stdlib/pull/12544) _(by Philipp Burckhardt)_
11311132
- [`1a35c42`](https://github.com/stdlib-js/stdlib/commit/1a35c4297cbdd96e126faa9a05aee2fc004119a4) - **refactor:** use `strideX`/`offsetX` parameter names in `blas/ext/base/gsort` [(#12538)](https://github.com/stdlib-js/stdlib/pull/12538) _(by Philipp Burckhardt)_

ext/base/ndarray/gsort/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { typedndarray, genericndarray } from '@stdlib/types/ndarray';
23+
import { typedndarray } from '@stdlib/types/ndarray';
2424

2525
/**
2626
* Sorts a one-dimensional ndarray.
@@ -50,7 +50,7 @@ import { typedndarray, genericndarray } from '@stdlib/types/ndarray';
5050
* var out = gsort( [ x, ord ] );
5151
* // returns <ndarray>[ -4.0, -2.0, 1.0, 3.0 ]
5252
*/
53-
declare function gsort<T extends typedndarray<unknown> | genericndarray<unknown> = typedndarray<unknown>>( arrays: [ T, typedndarray<number> ] ): T;
53+
declare function gsort<T extends typedndarray<unknown> = typedndarray<unknown>>( arrays: [ T, typedndarray<number> ] ): T;
5454

5555

5656
// EXPORTS //

0 commit comments

Comments
 (0)