Skip to content

Commit bcba7de

Browse files
committed
Auto-generated commit
1 parent 55dd494 commit bcba7de

Some content is hidden

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

44 files changed

+89
-87
lines changed

CHANGELOG.md

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

546546
<details>
547547

548+
- [`e9d58ab`](https://github.com/stdlib-js/stdlib/commit/e9d58abd0288a87700361673ba08d816a11d68fa) - **refactor:** resolve dtype string and update documented type _(by Athan Reines)_
548549
- [`2c42c06`](https://github.com/stdlib-js/stdlib/commit/2c42c06899b8274a4cbb93928affe62062309308) - **docs:** update type _(by Athan Reines)_
549550
- [`d83cf12`](https://github.com/stdlib-js/stdlib/commit/d83cf12d9e3a532a3378264da0ba530c0b2d95dd) - **docs:** update type _(by Athan Reines)_
550551
- [`ab2e77b`](https://github.com/stdlib-js/stdlib/commit/ab2e77bb82f0c6e7854e3279429a1ec8c6ff5603) - **docs:** update type _(by Athan Reines)_

base/assign/lib/0d.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
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 output 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

base/assign/lib/0d_accessors.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
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 output 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

base/assign/lib/10d.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
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 output 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

base/assign/lib/10d_accessors.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
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 output 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

base/assign/lib/10d_blocked.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ var blockSize = require( './../../../base/unary-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 output 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

base/assign/lib/10d_blocked_accessors.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ var blockSize = require( './../../../base/unary-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 output 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

base/assign/lib/1d.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
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 output 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

base/assign/lib/1d_accessors.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
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 output 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

base/assign/lib/2d.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
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 output 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

0 commit comments

Comments
 (0)