Skip to content

Commit 911af88

Browse files
committed
docs: update descriptions
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent 1047039 commit 911af88

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

lib/node_modules/@stdlib/stats/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

lib/node_modules/@stdlib/stats/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

lib/node_modules/@stdlib/stats/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)