Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 17, 2024
1 parent 68f9819 commit 105d2e4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,23 @@

<!-- /.features -->

<section class="bug-fixes">

### Bug Fixes

- [`16bb447`](https://github.com/stdlib-js/stdlib/commit/16bb44733defec3009d7c49cbd8cb6eaaaa60ad2) - update TypeScript function signature and documentation

</section>

<!-- /.bug-fixes -->

<section class="commits">

### Commits

<details>

- [`16bb447`](https://github.com/stdlib-js/stdlib/commit/16bb44733defec3009d7c49cbd8cb6eaaaa60ad2) - **fix:** update TypeScript function signature and documentation _(by Philipp Burckhardt)_
- [`0bb460f`](https://github.com/stdlib-js/stdlib/commit/0bb460f9675f693bd4eb5826888e493cae8757fc) - **feat:** add `array/base/cusome-by-right` _(by HarshaNP, Philipp Burckhardt)_

</details>
Expand Down
3 changes: 2 additions & 1 deletion docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ interface CusomeByRight {
* Cumulatively tests whether no array element in a provided array passes a test implemented by a predicate function, while iterating from right-to-left, and assigns the results to the provided output array.
*
* @param x - input array
* @param n - number of elements
* @param out - output array
* @param stride - output array stride
* @param offset - output array offset
Expand All @@ -159,7 +160,7 @@ interface CusomeByRight {
* var arr = cunoneBy.cunoneByRight( x, y, 2, 0, isPositive );,
* // returns [ true, null, false, null, false, null, false, null, false, null ]
*/
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Collection<U> | AccessorArrayLike<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Collection<U | boolean> | AccessorArrayLike<U | boolean>;
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, n: number, out: Collection<U> | AccessorArrayLike<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Collection<U | boolean> | AccessorArrayLike<U | boolean>;
}

/**
Expand Down

0 comments on commit 105d2e4

Please sign in to comment.