Skip to content

Commit 28e1376

Browse files
committed
Auto-generated commit
1 parent bf0a2fd commit 28e1376

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
### Features
1212

13+
- [`0b8d575`](https://github.com/stdlib-js/stdlib/commit/0b8d575e0c787c115519dee6d61e054739ea5512) - add accumulation input casting policy
1314
- [`d190eea`](https://github.com/stdlib-js/stdlib/commit/d190eea269491a659fe14618dff48bf701998813) - add input ndarray casting policies
1415
- [`e931ab0`](https://github.com/stdlib-js/stdlib/commit/e931ab0052e0b209c6e2693247d477a2cc8dc7af) - add accumulation and index output policies
1516
- [`6434c4c`](https://github.com/stdlib-js/stdlib/commit/6434c4c682aabf548a48569b05bd9096dfef10d2) - add array indexing data type kinds
@@ -27,6 +28,7 @@
2728

2829
<details>
2930

31+
- [`0b8d575`](https://github.com/stdlib-js/stdlib/commit/0b8d575e0c787c115519dee6d61e054739ea5512) - **feat:** add accumulation input casting policy _(by Athan Reines)_
3032
- [`d190eea`](https://github.com/stdlib-js/stdlib/commit/d190eea269491a659fe14618dff48bf701998813) - **feat:** add input ndarray casting policies _(by Athan Reines)_
3133
- [`e931ab0`](https://github.com/stdlib-js/stdlib/commit/e931ab0052e0b209c6e2693247d477a2cc8dc7af) - **feat:** add accumulation and index output policies _(by Athan Reines)_
3234
- [`6434c4c`](https://github.com/stdlib-js/stdlib/commit/6434c4c682aabf548a48569b05bd9096dfef10d2) - **feat:** add array indexing data type kinds _(by Athan Reines)_

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1607,7 +1607,7 @@ declare module '@stdlib/types/ndarray' {
16071607
/**
16081608
* Input ndarray casting policy.
16091609
*/
1610-
type InputCastingPolicy = 'none' | 'promoted' | 'output';
1610+
type InputCastingPolicy = 'none' | 'promoted' | 'accumulation' | 'output';
16111611

16121612
/**
16131613
* Array order.

0 commit comments

Comments
 (0)