Skip to content

Commit d3e3f29

Browse files
committed
Auto-generated commit
1 parent 11edadd commit d3e3f29

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

CHANGELOG.md

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

2121
### Bug Fixes
2222

23+
- [`07a3349`](https://github.com/stdlib-js/stdlib/commit/07a3349f6ab025490bafad9cd3b2d08df70f1fed) - use correct export names [(#12665)](https://github.com/stdlib-js/stdlib/pull/12665)
2324
- [`4e89875`](https://github.com/stdlib-js/stdlib/commit/4e898755cf98f6e3b8d8c24079fb9ea7730f2d9c) - preserve input ndarray type in `ndarray/base/maybe-broadcast-array-except-dimensions` [(#12629)](https://github.com/stdlib-js/stdlib/pull/12629)
2425
- [`95016b8`](https://github.com/stdlib-js/stdlib/commit/95016b8c7179f978fb8ef5b272cff36b523e06e6) - add missing import in `ndarray/base/unflatten` declarations [(#12625)](https://github.com/stdlib-js/stdlib/pull/12625)
2526

@@ -33,6 +34,7 @@
3334

3435
<details>
3536

37+
- [`07a3349`](https://github.com/stdlib-js/stdlib/commit/07a3349f6ab025490bafad9cd3b2d08df70f1fed) - **fix:** use correct export names [(#12665)](https://github.com/stdlib-js/stdlib/pull/12665) _(by Philipp Burckhardt, Athan Reines)_
3638
- [`104ec96`](https://github.com/stdlib-js/stdlib/commit/104ec966cbe5e4530a183aed20422da4b129ac6e) - **refactor:** align parameter names in `ndarray/base/nullary-loop-interchange-order` [(#12668)](https://github.com/stdlib-js/stdlib/pull/12668) _(by Philipp Burckhardt)_
3739
- [`a9e03ed`](https://github.com/stdlib-js/stdlib/commit/a9e03edc48bf43a1c290ed1ec1e2f69186678b15) - **refactor:** add missing generic type-parameter defaults in `ndarray` reverse declarations [(#12666)](https://github.com/stdlib-js/stdlib/pull/12666) _(by Philipp Burckhardt)_
3840
- [`d01cc15`](https://github.com/stdlib-js/stdlib/commit/d01cc150c5d271c5132af9706f86fd15160e5f39) - **docs:** update `ndarray` TypeScript declarations [(#12662)](https://github.com/stdlib-js/stdlib/pull/12662) _(by stdlib-bot)_

base/binary-input-casting-dtype/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ import { DataType, InputCastingPolicy } from '@stdlib/types/ndarray';
3232
* @returns input ndarray casting data type
3333
*
3434
* @example
35-
* var dt = outputDataType( 'float64', 'float64', 'float64', 'none' );
35+
* var dt = inputCastingDataType( 'float64', 'float64', 'float64', 'none' );
3636
* // returns <string>
3737
*/
38-
declare function outputDataType( idtype1: DataType, idtype2: DataType, odtype: DataType, policy: InputCastingPolicy | DataType ): DataType;
38+
declare function inputCastingDataType( idtype1: DataType, idtype2: DataType, odtype: DataType, policy: InputCastingPolicy | DataType ): DataType;
3939

4040

4141
// EXPORTS //
4242

43-
export = outputDataType;
43+
export = inputCastingDataType;

base/unary-input-casting-dtype/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ import { DataType, InputCastingPolicy } from '@stdlib/types/ndarray';
3131
* @returns input ndarray casting data type
3232
*
3333
* @example
34-
* var dt = outputDataType( 'float64', 'float64', 'none' );
34+
* var dt = inputCastingDataType( 'float64', 'float64', 'none' );
3535
* // returns <string>
3636
*/
37-
declare function outputDataType( idtype: DataType, odtype: DataType, policy: InputCastingPolicy | DataType ): DataType;
37+
declare function inputCastingDataType( idtype: DataType, odtype: DataType, policy: InputCastingPolicy | DataType ): DataType;
3838

3939

4040
// EXPORTS //
4141

42-
export = outputDataType;
42+
export = inputCastingDataType;

0 commit comments

Comments
 (0)