File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 10
10
11
11
### Features
12
12
13
+ - [ ` 0b8d575 ` ] ( https://github.com/stdlib-js/stdlib/commit/0b8d575e0c787c115519dee6d61e054739ea5512 ) - add accumulation input casting policy
13
14
- [ ` d190eea ` ] ( https://github.com/stdlib-js/stdlib/commit/d190eea269491a659fe14618dff48bf701998813 ) - add input ndarray casting policies
14
15
- [ ` e931ab0 ` ] ( https://github.com/stdlib-js/stdlib/commit/e931ab0052e0b209c6e2693247d477a2cc8dc7af ) - add accumulation and index output policies
15
16
- [ ` 6434c4c ` ] ( https://github.com/stdlib-js/stdlib/commit/6434c4c682aabf548a48569b05bd9096dfef10d2 ) - add array indexing data type kinds
27
28
28
29
<details >
29
30
31
+ - [ ` 0b8d575 ` ] ( https://github.com/stdlib-js/stdlib/commit/0b8d575e0c787c115519dee6d61e054739ea5512 ) - ** feat:** add accumulation input casting policy _ (by Athan Reines)_
30
32
- [ ` d190eea ` ] ( https://github.com/stdlib-js/stdlib/commit/d190eea269491a659fe14618dff48bf701998813 ) - ** feat:** add input ndarray casting policies _ (by Athan Reines)_
31
33
- [ ` e931ab0 ` ] ( https://github.com/stdlib-js/stdlib/commit/e931ab0052e0b209c6e2693247d477a2cc8dc7af ) - ** feat:** add accumulation and index output policies _ (by Athan Reines)_
32
34
- [ ` 6434c4c ` ] ( https://github.com/stdlib-js/stdlib/commit/6434c4c682aabf548a48569b05bd9096dfef10d2 ) - ** feat:** add array indexing data type kinds _ (by Athan Reines)_
Original file line number Diff line number Diff line change @@ -1607,7 +1607,7 @@ declare module '@stdlib/types/ndarray' {
1607
1607
/**
1608
1608
* Input ndarray casting policy.
1609
1609
*/
1610
- type InputCastingPolicy = 'none' | 'promoted' | 'output' ;
1610
+ type InputCastingPolicy = 'none' | 'promoted' | 'accumulation' | ' output';
1611
1611
1612
1612
/**
1613
1613
* Array order.
You can’t perform that action at this time.
0 commit comments