Skip to content

Commit ee47a1d

Browse files
committed
Auto-generated commit
1 parent 17e4486 commit ee47a1d

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040

4141
<details>
4242

43+
- [`cae5335`](https://github.com/stdlib-js/stdlib/commit/cae53357950b4c389b0020878c268995cd79d222) - **docs:** propagate develop fixes to sibling packages [(#12736)](https://github.com/stdlib-js/stdlib/pull/12736) _(by Philipp Burckhardt)_
4344
- [`8477cf4`](https://github.com/stdlib-js/stdlib/commit/8477cf466ddfda9e00d3cf246d16f1bc8499943c) - **docs:** fix descriptions in `ndarray/base/nulls-like` [(#12756)](https://github.com/stdlib-js/stdlib/pull/12756) _(by Philipp Burckhardt)_
4445
- [`4b1307f`](https://github.com/stdlib-js/stdlib/commit/4b1307f5f7a8e2d718f067772534505ca27aa0da) - **docs:** update `ndarray` TypeScript declarations [(#12746)](https://github.com/stdlib-js/stdlib/pull/12746) _(by stdlib-bot)_
4546
- [`de39564`](https://github.com/stdlib-js/stdlib/commit/de395643f761c77298491ab507475a32ab8402e9) - **docs:** update related packages sections [(#12743)](https://github.com/stdlib-js/stdlib/pull/12743) _(by stdlib-bot)_

find-last/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/// <reference types="@stdlib/types"/>
2222

2323
import { ArrayLike } from '@stdlib/types/array';
24-
import { ndarray, typedndarray } from '@stdlib/types/ndarray';
24+
import { typedndarray } from '@stdlib/types/ndarray';
2525

2626
/**
2727
* Returns a boolean indicating whether an element passes a test.
@@ -221,7 +221,7 @@ interface FindLast {
221221
* var out = findLast.assign( x, y, isEven );
222222
* // returns <ndarray>[ 6.0 ]
223223
*/
224-
assign<T = unknown, U extends typedndarray<T> = typedndarray<T>, ThisArg = unknown>( x: ndarray, out: U, predicate: Predicate<T, U, ThisArg>, thisArg?: ThisParameterType<Predicate<T, U, ThisArg>> ): U;
224+
assign<T = unknown, U extends typedndarray<T> = typedndarray<T>, V extends typedndarray<T> = typedndarray<T>, ThisArg = unknown>( x: U, out: V, predicate: Predicate<T, U, ThisArg>, thisArg?: ThisParameterType<Predicate<T, U, ThisArg>> ): V;
225225

226226
/**
227227
* Finds the last elements which pass a test implemented by a predicate function along one or more ndarray dimensions and assigns results to a provided output ndarray.
@@ -265,7 +265,7 @@ interface FindLast {
265265
* var out = findLast.assign( x, y, {}, isEven );
266266
* // returns <ndarray>[ 6.0 ]
267267
*/
268-
assign<T = unknown, U extends typedndarray<T> = typedndarray<T>, V = T, ThisArg = unknown>( x: ndarray, out: U, options: AssignOptions<V>, predicate: Predicate<T, U, ThisArg>, thisArg?: ThisParameterType<Predicate<T, U, ThisArg>> ): U;
268+
assign<T = unknown, U extends typedndarray<T> = typedndarray<T>, V extends typedndarray<T> = typedndarray<T>, W = T, ThisArg = unknown>( x: U, out: V, options: AssignOptions<W>, predicate: Predicate<T, U, ThisArg>, thisArg?: ThisParameterType<Predicate<T, U, ThisArg>> ): V;
269269
}
270270

271271
/**

find/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/// <reference types="@stdlib/types"/>
2222

2323
import { ArrayLike } from '@stdlib/types/array';
24-
import { ndarray, typedndarray } from '@stdlib/types/ndarray';
24+
import { typedndarray } from '@stdlib/types/ndarray';
2525

2626
/**
2727
* Returns a boolean indicating whether an element passes a test.
@@ -227,7 +227,7 @@ interface Find {
227227
* var v = out.get();
228228
* // returns 2.0
229229
*/
230-
assign<T = unknown, U extends typedndarray<T> = typedndarray<T>, ThisArg = unknown>( x: ndarray, out: U, predicate: Predicate<T, U, ThisArg>, thisArg?: ThisParameterType<Predicate<T, U, ThisArg>> ): U;
230+
assign<T = unknown, U extends typedndarray<T> = typedndarray<T>, V extends typedndarray<T> = typedndarray<T>, ThisArg = unknown>( x: U, out: V, predicate: Predicate<T, U, ThisArg>, thisArg?: ThisParameterType<Predicate<T, U, ThisArg>> ): V;
231231

232232
/**
233233
* Finds the first elements which pass a test implemented by a predicate function along one or more ndarray dimensions and assigns results to a provided output ndarray.
@@ -271,7 +271,7 @@ interface Find {
271271
* var out = find.assign( x, y, {}, isEven );
272272
* // returns <ndarray>
273273
*/
274-
assign<T = unknown, U extends typedndarray<T> = typedndarray<T>, V = T, ThisArg = unknown>( x: ndarray, out: U, options: AssignOptions<V>, predicate: Predicate<T, U, ThisArg>, thisArg?: ThisParameterType<Predicate<T, U, ThisArg>> ): U;
274+
assign<T = unknown, U extends typedndarray<T> = typedndarray<T>, V extends typedndarray<T> = typedndarray<T>, W = T, ThisArg = unknown>( x: U, out: V, options: AssignOptions<W>, predicate: Predicate<T, U, ThisArg>, thisArg?: ThisParameterType<Predicate<T, U, ThisArg>> ): V;
275275
}
276276

277277
/**

0 commit comments

Comments
 (0)