Skip to content

Commit 88745e0

Browse files
committed
docs: update type
--- 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: passed - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent e9d58ab commit 88745e0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+126
-126
lines changed

lib/node_modules/@stdlib/ndarray/base/binary/lib/0d.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@
2525
*
2626
* @private
2727
* @param {Object} x - object containing input ndarray meta data
28-
* @param {string} x.dtype - data type
28+
* @param {*} x.dtype - data type
2929
* @param {Collection} x.data - data buffer
3030
* @param {NonNegativeIntegerArray} x.shape - dimensions
3131
* @param {IntegerArray} x.strides - stride lengths
3232
* @param {NonNegativeInteger} x.offset - index offset
3333
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
3434
* @param {Object} y - object containing input ndarray meta data
35-
* @param {string} y.dtype - data type
35+
* @param {*} y.dtype - data type
3636
* @param {Collection} y.data - data buffer
3737
* @param {NonNegativeIntegerArray} y.shape - dimensions
3838
* @param {IntegerArray} y.strides - stride lengths
3939
* @param {NonNegativeInteger} y.offset - index offset
4040
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
4141
* @param {Object} z - object containing output ndarray meta data
42-
* @param {string} z.dtype - data type
42+
* @param {*} z.dtype - data type
4343
* @param {Collection} z.data - data buffer
4444
* @param {NonNegativeIntegerArray} z.shape - dimensions
4545
* @param {IntegerArray} z.strides - stride lengths

lib/node_modules/@stdlib/ndarray/base/binary/lib/0d_accessors.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,23 @@
2525
*
2626
* @private
2727
* @param {Object} x - object containing input ndarray meta data
28-
* @param {string} x.dtype - data type
28+
* @param {*} x.dtype - data type
2929
* @param {Collection} x.data - data buffer
3030
* @param {NonNegativeIntegerArray} x.shape - dimensions
3131
* @param {IntegerArray} x.strides - stride lengths
3232
* @param {NonNegativeInteger} x.offset - index offset
3333
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
3434
* @param {Array<Function>} x.accessors - data buffer accessors
3535
* @param {Object} y - object containing input ndarray meta data
36-
* @param {string} y.dtype - data type
36+
* @param {*} y.dtype - data type
3737
* @param {Collection} y.data - data buffer
3838
* @param {NonNegativeIntegerArray} y.shape - dimensions
3939
* @param {IntegerArray} y.strides - stride lengths
4040
* @param {NonNegativeInteger} y.offset - index offset
4141
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
4242
* @param {Array<Function>} y.accessors - data buffer accessors
4343
* @param {Object} z - object containing output ndarray meta data
44-
* @param {string} z.dtype - data type
44+
* @param {*} z.dtype - data type
4545
* @param {Collection} z.data - data buffer
4646
* @param {NonNegativeIntegerArray} z.shape - dimensions
4747
* @param {IntegerArray} z.strides - stride lengths

lib/node_modules/@stdlib/ndarray/base/binary/lib/10d.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@
2727
*
2828
* @private
2929
* @param {Object} x - object containing input ndarray meta data
30-
* @param {string} x.dtype - data type
30+
* @param {*} x.dtype - data type
3131
* @param {Collection} x.data - data buffer
3232
* @param {NonNegativeIntegerArray} x.shape - dimensions
3333
* @param {IntegerArray} x.strides - stride lengths
3434
* @param {NonNegativeInteger} x.offset - index offset
3535
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
3636
* @param {Object} y - object containing input ndarray meta data
37-
* @param {string} y.dtype - data type
37+
* @param {*} y.dtype - data type
3838
* @param {Collection} y.data - data buffer
3939
* @param {NonNegativeIntegerArray} y.shape - dimensions
4040
* @param {IntegerArray} y.strides - stride lengths
4141
* @param {NonNegativeInteger} y.offset - index offset
4242
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
4343
* @param {Object} z - object containing output ndarray meta data
44-
* @param {string} z.dtype - data type
44+
* @param {*} z.dtype - data type
4545
* @param {Collection} z.data - data buffer
4646
* @param {NonNegativeIntegerArray} z.shape - dimensions
4747
* @param {IntegerArray} z.strides - stride lengths

lib/node_modules/@stdlib/ndarray/base/binary/lib/10d_accessors.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,23 @@
2727
*
2828
* @private
2929
* @param {Object} x - object containing input ndarray meta data
30-
* @param {string} x.dtype - data type
30+
* @param {*} x.dtype - data type
3131
* @param {Collection} x.data - data buffer
3232
* @param {NonNegativeIntegerArray} x.shape - dimensions
3333
* @param {IntegerArray} x.strides - stride lengths
3434
* @param {NonNegativeInteger} x.offset - index offset
3535
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
3636
* @param {Array<Function>} x.accessors - data buffer accessors
3737
* @param {Object} y - object containing input ndarray meta data
38-
* @param {string} y.dtype - data type
38+
* @param {*} y.dtype - data type
3939
* @param {Collection} y.data - data buffer
4040
* @param {NonNegativeIntegerArray} y.shape - dimensions
4141
* @param {IntegerArray} y.strides - stride lengths
4242
* @param {NonNegativeInteger} y.offset - index offset
4343
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
4444
* @param {Array<Function>} y.accessors - data buffer accessors
4545
* @param {Object} z - object containing output ndarray meta data
46-
* @param {string} z.dtype - data type
46+
* @param {*} z.dtype - data type
4747
* @param {Collection} z.data - data buffer
4848
* @param {NonNegativeIntegerArray} z.shape - dimensions
4949
* @param {IntegerArray} z.strides - stride lengths

lib/node_modules/@stdlib/ndarray/base/binary/lib/10d_blocked.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ var blockSize = require( '@stdlib/ndarray/base/binary-tiling-block-size' );
3333
*
3434
* @private
3535
* @param {Object} x - object containing input ndarray meta data
36-
* @param {string} x.dtype - data type
36+
* @param {*} x.dtype - data type
3737
* @param {Collection} x.data - data buffer
3838
* @param {NonNegativeIntegerArray} x.shape - dimensions
3939
* @param {IntegerArray} x.strides - stride lengths
4040
* @param {NonNegativeInteger} x.offset - index offset
4141
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
4242
* @param {Object} y - object containing input ndarray meta data
43-
* @param {string} y.dtype - data type
43+
* @param {*} y.dtype - data type
4444
* @param {Collection} y.data - data buffer
4545
* @param {NonNegativeIntegerArray} y.shape - dimensions
4646
* @param {IntegerArray} y.strides - stride lengths
4747
* @param {NonNegativeInteger} y.offset - index offset
4848
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
4949
* @param {Object} z - object containing output ndarray meta data
50-
* @param {string} z.dtype - data type
50+
* @param {*} z.dtype - data type
5151
* @param {Collection} z.data - data buffer
5252
* @param {NonNegativeIntegerArray} z.shape - dimensions
5353
* @param {IntegerArray} z.strides - stride lengths

lib/node_modules/@stdlib/ndarray/base/binary/lib/10d_blocked_accessors.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,23 @@ var blockSize = require( '@stdlib/ndarray/base/binary-tiling-block-size' );
3333
*
3434
* @private
3535
* @param {Object} x - object containing input ndarray meta data
36-
* @param {string} x.dtype - data type
36+
* @param {*} x.dtype - data type
3737
* @param {Collection} x.data - data buffer
3838
* @param {NonNegativeIntegerArray} x.shape - dimensions
3939
* @param {IntegerArray} x.strides - stride lengths
4040
* @param {NonNegativeInteger} x.offset - index offset
4141
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
4242
* @param {Array<Function>} x.accessors - data buffer accessors
4343
* @param {Object} y - object containing input ndarray meta data
44-
* @param {string} y.dtype - data type
44+
* @param {*} y.dtype - data type
4545
* @param {Collection} y.data - data buffer
4646
* @param {NonNegativeIntegerArray} y.shape - dimensions
4747
* @param {IntegerArray} y.strides - stride lengths
4848
* @param {NonNegativeInteger} y.offset - index offset
4949
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
5050
* @param {Array<Function>} y.accessors - data buffer accessors
5151
* @param {Object} z - object containing output ndarray meta data
52-
* @param {string} z.dtype - data type
52+
* @param {*} z.dtype - data type
5353
* @param {Collection} z.data - data buffer
5454
* @param {NonNegativeIntegerArray} z.shape - dimensions
5555
* @param {IntegerArray} z.strides - stride lengths

lib/node_modules/@stdlib/ndarray/base/binary/lib/1d.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@
2525
*
2626
* @private
2727
* @param {Object} x - object containing input ndarray meta data
28-
* @param {string} x.dtype - data type
28+
* @param {*} x.dtype - data type
2929
* @param {Collection} x.data - data buffer
3030
* @param {NonNegativeIntegerArray} x.shape - dimensions
3131
* @param {IntegerArray} x.strides - stride lengths
3232
* @param {NonNegativeInteger} x.offset - index offset
3333
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
3434
* @param {Object} y - object containing input ndarray meta data
35-
* @param {string} y.dtype - data type
35+
* @param {*} y.dtype - data type
3636
* @param {Collection} y.data - data buffer
3737
* @param {NonNegativeIntegerArray} y.shape - dimensions
3838
* @param {IntegerArray} y.strides - stride lengths
3939
* @param {NonNegativeInteger} y.offset - index offset
4040
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
4141
* @param {Object} z - object containing output ndarray meta data
42-
* @param {string} z.dtype - data type
42+
* @param {*} z.dtype - data type
4343
* @param {Collection} z.data - data buffer
4444
* @param {NonNegativeIntegerArray} z.shape - dimensions
4545
* @param {IntegerArray} z.strides - stride lengths

lib/node_modules/@stdlib/ndarray/base/binary/lib/1d_accessors.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,23 @@
2525
*
2626
* @private
2727
* @param {Object} x - object containing input ndarray meta data
28-
* @param {string} x.dtype - data type
28+
* @param {*} x.dtype - data type
2929
* @param {Collection} x.data - data buffer
3030
* @param {NonNegativeIntegerArray} x.shape - dimensions
3131
* @param {IntegerArray} x.strides - stride lengths
3232
* @param {NonNegativeInteger} x.offset - index offset
3333
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
3434
* @param {Array<Function>} x.accessors - data buffer accessors
3535
* @param {Object} y - object containing input ndarray meta data
36-
* @param {string} y.dtype - data type
36+
* @param {*} y.dtype - data type
3737
* @param {Collection} y.data - data buffer
3838
* @param {NonNegativeIntegerArray} y.shape - dimensions
3939
* @param {IntegerArray} y.strides - stride lengths
4040
* @param {NonNegativeInteger} y.offset - index offset
4141
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
4242
* @param {Array<Function>} y.accessors - data buffer accessors
4343
* @param {Object} z - object containing output ndarray meta data
44-
* @param {string} z.dtype - data type
44+
* @param {*} z.dtype - data type
4545
* @param {Collection} z.data - data buffer
4646
* @param {NonNegativeIntegerArray} z.shape - dimensions
4747
* @param {IntegerArray} z.strides - stride lengths

lib/node_modules/@stdlib/ndarray/base/binary/lib/2d.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@
2525
*
2626
* @private
2727
* @param {Object} x - object containing input ndarray meta data
28-
* @param {string} x.dtype - data type
28+
* @param {*} x.dtype - data type
2929
* @param {Collection} x.data - data buffer
3030
* @param {NonNegativeIntegerArray} x.shape - dimensions
3131
* @param {IntegerArray} x.strides - stride lengths
3232
* @param {NonNegativeInteger} x.offset - index offset
3333
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
3434
* @param {Object} y - object containing input ndarray meta data
35-
* @param {string} y.dtype - data type
35+
* @param {*} y.dtype - data type
3636
* @param {Collection} y.data - data buffer
3737
* @param {NonNegativeIntegerArray} y.shape - dimensions
3838
* @param {IntegerArray} y.strides - stride lengths
3939
* @param {NonNegativeInteger} y.offset - index offset
4040
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
4141
* @param {Object} z - object containing output ndarray meta data
42-
* @param {string} z.dtype - data type
42+
* @param {*} z.dtype - data type
4343
* @param {Collection} z.data - data buffer
4444
* @param {NonNegativeIntegerArray} z.shape - dimensions
4545
* @param {IntegerArray} z.strides - stride lengths

lib/node_modules/@stdlib/ndarray/base/binary/lib/2d_accessors.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,23 @@
2525
*
2626
* @private
2727
* @param {Object} x - object containing input ndarray meta data
28-
* @param {string} x.dtype - data type
28+
* @param {*} x.dtype - data type
2929
* @param {Collection} x.data - data buffer
3030
* @param {NonNegativeIntegerArray} x.shape - dimensions
3131
* @param {IntegerArray} x.strides - stride lengths
3232
* @param {NonNegativeInteger} x.offset - index offset
3333
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
3434
* @param {Array<Function>} x.accessors - data buffer accessors
3535
* @param {Object} y - object containing input ndarray meta data
36-
* @param {string} y.dtype - data type
36+
* @param {*} y.dtype - data type
3737
* @param {Collection} y.data - data buffer
3838
* @param {NonNegativeIntegerArray} y.shape - dimensions
3939
* @param {IntegerArray} y.strides - stride lengths
4040
* @param {NonNegativeInteger} y.offset - index offset
4141
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
4242
* @param {Array<Function>} y.accessors - data buffer accessors
4343
* @param {Object} z - object containing output ndarray meta data
44-
* @param {string} z.dtype - data type
44+
* @param {*} z.dtype - data type
4545
* @param {Collection} z.data - data buffer
4646
* @param {NonNegativeIntegerArray} z.shape - dimensions
4747
* @param {IntegerArray} z.strides - stride lengths

0 commit comments

Comments
 (0)