Skip to content

Commit 9cf37b7

Browse files
committed
Auto-generated commit
1 parent 749e081 commit 9cf37b7

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3499,6 +3499,7 @@ A total of 557 issues were closed in this release:
34993499

35003500
<details>
35013501

3502+
- [`911af88`](https://github.com/stdlib-js/stdlib/commit/911af88583e1b29ffa7f857e20b74cfafba80081) - **docs:** update descriptions _(by Athan Reines)_
35023503
- [`1047039`](https://github.com/stdlib-js/stdlib/commit/1047039d66b59aebfd435202f7173a1809f3aa17) - **feat:** add `stats/base/ndarray/nanmskrange` [(#8757)](https://github.com/stdlib-js/stdlib/pull/8757) _(by Kaustubh Patange)_
35033504
- [`3e95cb4`](https://github.com/stdlib-js/stdlib/commit/3e95cb456bbeabe21ae465e1207a6f3e4ecaef6f) - **feat:** add `stats/base/ndarray/snanmskmax` [(#8738)](https://github.com/stdlib-js/stdlib/pull/8738) _(by Kaustubh Patange)_
35043505
- [`9fd602c`](https://github.com/stdlib-js/stdlib/commit/9fd602c0962f9c7f2bcb3783b1b65aa9b8c517bc) - **feat:** add `stats/base/ndarray/nanrange-by` [(#8737)](https://github.com/stdlib-js/stdlib/pull/8737) _(by Sachin Pangal)_

max-by/docs/types/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ type InputArray<T> = typedndarray<T>;
3434
type OutputArray<U> = typedndarray<U>;
3535

3636
/**
37-
* Returns the result of callback function.
37+
* Callback function applied to each element of an ndarray.
3838
*
3939
* @returns result
4040
*/
4141
type NullaryCallback<ThisArg> = ( this: ThisArg ) => number | void;
4242

4343
/**
44-
* Returns the result of callback function.
44+
* Callback function applied to each element of an ndarray.
4545
*
4646
* @param value - current array element
4747
* @returns result
4848
*/
4949
type UnaryCallback<T, ThisArg> = ( this: ThisArg, value: T ) => number | void;
5050

5151
/**
52-
* Returns the result of callback function.
52+
* Callback function applied to each element of an ndarray.
5353
*
5454
* @param value - current array element
5555
* @param index - current array element index
@@ -58,7 +58,7 @@ type UnaryCallback<T, ThisArg> = ( this: ThisArg, value: T ) => number | void;
5858
type BinaryCallback<T, ThisArg> = ( this: ThisArg, value: T, index: number ) => number | void;
5959

6060
/**
61-
* Returns the result of callback function.
61+
* Callback function applied to each element of an ndarray.
6262
*
6363
* @param value - current array element
6464
* @param index - current array element index
@@ -68,7 +68,7 @@ type BinaryCallback<T, ThisArg> = ( this: ThisArg, value: T, index: number ) =>
6868
type TernaryCallback<T, U, ThisArg> = ( this: ThisArg, value: T, index: number, array: U ) => number | void;
6969

7070
/**
71-
* Returns the result of callback function.
71+
* Callback function applied to each element of an ndarray.
7272
*
7373
* @param value - current array element
7474
* @param index - current array element index

min-by/docs/types/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ type InputArray<T> = typedndarray<T>;
3434
type OutputArray<U> = typedndarray<U>;
3535

3636
/**
37-
* Returns the result of callback function.
37+
* Callback function applied to each element of an ndarray.
3838
*
3939
* @returns result
4040
*/
4141
type NullaryCallback<ThisArg> = ( this: ThisArg ) => number | void;
4242

4343
/**
44-
* Returns the result of callback function.
44+
* Callback function applied to each element of an ndarray.
4545
*
4646
* @param value - current array element
4747
* @returns result
4848
*/
4949
type UnaryCallback<T, ThisArg> = ( this: ThisArg, value: T ) => number | void;
5050

5151
/**
52-
* Returns the result of callback function.
52+
* Callback function applied to each element of an ndarray.
5353
*
5454
* @param value - current array element
5555
* @param index - current array element index
@@ -58,7 +58,7 @@ type UnaryCallback<T, ThisArg> = ( this: ThisArg, value: T ) => number | void;
5858
type BinaryCallback<T, ThisArg> = ( this: ThisArg, value: T, index: number ) => number | void;
5959

6060
/**
61-
* Returns the result of callback function.
61+
* Callback function applied to each element of an ndarray.
6262
*
6363
* @param value - current array element
6464
* @param index - current array element index
@@ -68,7 +68,7 @@ type BinaryCallback<T, ThisArg> = ( this: ThisArg, value: T, index: number ) =>
6868
type TernaryCallback<T, U, ThisArg> = ( this: ThisArg, value: T, index: number, array: U ) => number | void;
6969

7070
/**
71-
* Returns the result of callback function.
71+
* Callback function applied to each element of an ndarray.
7272
*
7373
* @param value - current array element
7474
* @param index - current array element index

range-by/docs/types/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ type InputArray<T> = typedndarray<T>;
3434
type OutputArray<U> = typedndarray<U>;
3535

3636
/**
37-
* Returns the result of callback function.
37+
* Callback function applied to each element of an ndarray.
3838
*
3939
* @returns result
4040
*/
4141
type NullaryCallback<ThisArg> = ( this: ThisArg ) => number | void;
4242

4343
/**
44-
* Returns the result of callback function.
44+
* Callback function applied to each element of an ndarray.
4545
*
4646
* @param value - current array element
4747
* @returns result
4848
*/
4949
type UnaryCallback<T, ThisArg> = ( this: ThisArg, value: T ) => number | void;
5050

5151
/**
52-
* Returns the result of callback function.
52+
* Callback function applied to each element of an ndarray.
5353
*
5454
* @param value - current array element
5555
* @param index - current array element index
@@ -58,7 +58,7 @@ type UnaryCallback<T, ThisArg> = ( this: ThisArg, value: T ) => number | void;
5858
type BinaryCallback<T, ThisArg> = ( this: ThisArg, value: T, index: number ) => number | void;
5959

6060
/**
61-
* Returns the result of callback function.
61+
* Callback function applied to each element of an ndarray.
6262
*
6363
* @param value - current array element
6464
* @param index - current array element index
@@ -68,7 +68,7 @@ type BinaryCallback<T, ThisArg> = ( this: ThisArg, value: T, index: number ) =>
6868
type TernaryCallback<T, U, ThisArg> = ( this: ThisArg, value: T, index: number, array: U ) => number | void;
6969

7070
/**
71-
* Returns the result of callback function.
71+
* Callback function applied to each element of an ndarray.
7272
*
7373
* @param value - current array element
7474
* @param index - current array element index

0 commit comments

Comments
 (0)