Skip to content

Commit adeb2ea

Browse files
committed
Auto-generated commit
1 parent bcba7de commit adeb2ea

43 files changed

Lines changed: 127 additions & 126 deletions

Some content is hidden

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

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+
- [`88745e0`](https://github.com/stdlib-js/stdlib/commit/88745e0ec1040dcb70585877c2e64aafd9dfe79d) - **docs:** update type _(by Athan Reines)_
548549
- [`e9d58ab`](https://github.com/stdlib-js/stdlib/commit/e9d58abd0288a87700361673ba08d816a11d68fa) - **refactor:** resolve dtype string and update documented type _(by Athan Reines)_
549550
- [`2c42c06`](https://github.com/stdlib-js/stdlib/commit/2c42c06899b8274a4cbb93928affe62062309308) - **docs:** update type _(by Athan Reines)_
550551
- [`d83cf12`](https://github.com/stdlib-js/stdlib/commit/d83cf12d9e3a532a3378264da0ba530c0b2d95dd) - **docs:** update type _(by Athan Reines)_

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

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

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

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

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( './../../../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

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( './../../../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

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

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

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

0 commit comments

Comments
 (0)