Skip to content

Commit 2b56c40

Browse files
committed
Auto-generated commit
1 parent 786f80a commit 2b56c40

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-06-22)
7+
## Unreleased (2025-06-24)
88

99
<section class="features">
1010

@@ -443,6 +443,8 @@ A total of 20 issues were closed in this release:
443443

444444
<details>
445445

446+
- [`1bb671f`](https://github.com/stdlib-js/stdlib/commit/1bb671f66c75cf8ec48146394fe2756831937853) - **refactor:** relax dtype type _(by Athan Reines)_
447+
- [`e6a8b55`](https://github.com/stdlib-js/stdlib/commit/e6a8b554a64663970ed6f56b16532222543ddefd) - **refactor:** relax dtype type _(by Athan Reines)_
446448
- [`b479fcf`](https://github.com/stdlib-js/stdlib/commit/b479fcfb90c9c9cd56cc0908b2a60a5302f1710f) - **test:** add missing tests to `ndarray/base/every` [(#7235)](https://github.com/stdlib-js/stdlib/pull/7235) _(by Muhammad Haris)_
447449
- [`3f4be91`](https://github.com/stdlib-js/stdlib/commit/3f4be91fd9025e696b72b5159fee981f47937c7f) - **docs:** update namespace table of contents [(#7433)](https://github.com/stdlib-js/stdlib/pull/7433) _(by stdlib-bot, Philipp Burckhardt)_
448450
- [`eac188f`](https://github.com/stdlib-js/stdlib/commit/eac188f4def9fa545e9e0cfcd5731a66337fcd1a) - **feat:** add support for struct data types _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Bryan Elee <rxbryn@gmail.com>
3737
Chinmay Joshi <86140365+JawHawk@users.noreply.github.com>
3838
Christopher Dambamuromo <chridam@gmail.com>
3939
Dan Rose <danoftheroses@gmail.com>
40+
Daniel Hernandez Gomez <156333015+dhernandeez13@users.noreply.github.com>
4041
Daniel Killenberger <daniel.killenberger@gmail.com>
4142
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
4243
Debashis Maharana <debashismaharana7854@gmail.com>
@@ -63,6 +64,7 @@ Girish Garg <garggirish2020@gmail.com>
6364
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
6465
Gunj Joshi <gunjjoshi8372@gmail.com>
6566
Gururaj Gurram <gururajgurram1512@gmail.com>
67+
Harishchandra Reddy <harish.7000@gmail.com>
6668
Haroon Rasheed <51189276+haroon26@users.noreply.github.com>
6769
Harsh <harshyadav6078@gmail.com>
6870
HarshaNP <96897754+GittyHarsha@users.noreply.github.com>
@@ -201,6 +203,7 @@ ditsu <170345142+ditsus@users.noreply.github.com>
201203
ekambains <bainsinbusiness@gmail.com>
202204
fadiothman22 <48636283+fadiothman22@users.noreply.github.com>
203205
iraandrushko <71790513+iraandrushko@users.noreply.github.com>
206+
jsai28 <54253219+jsai28@users.noreply.github.com>
204207
lohithganni <116790357+lohithganni@users.noreply.github.com>
205208
olenkabilonizhka <62379231+olenkabilonizhka@users.noreply.github.com>
206209
pranav-1720 <123018993+pranav-1720@users.noreply.github.com>

base/ndarraylike2ndarray/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var DEFAULT_ORDER = defaults( 'order' );
4141
* Converts an ndarray-like object to an ndarray.
4242
*
4343
* @param {ndarrayLike} x - ndarray-like object
44-
* @param {string} x.dtype - data type
44+
* @param {*} x.dtype - data type
4545
* @param {Collection} x.data - data buffer
4646
* @param {NonNegativeIntegerArray} x.shape - dimensions
4747
* @param {IntegerArray} x.strides - stride lengths

base/ndarraylike2object/docs/repl.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
- offset: index offset.
1515
- order: order.
1616
- accessorProtocol: boolean indicating whether the data buffer uses
17-
accessors for getting and setting elements.
17+
accessors for getting and setting elements.
1818
- accessors: a two-element array whose first element is an accessor for
19-
retrieving an ndarray element and whose second element is an accessor for
20-
setting an ndarray element.
19+
retrieving an ndarray element and whose second element is an accessor for
20+
setting an ndarray element.
2121

2222
The getter accessor accepts two arguments:
2323

@@ -43,7 +43,7 @@
4343
out.ref: ndarray
4444
Reference to input array.
4545

46-
out.dtype: string
46+
out.dtype: any
4747
Underlying data type.
4848

4949
out.data: ArrayLikeObject

base/ndarraylike2object/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ var getData = require( './../../../base/data-buffer' );
5757
* - **accessors**: a two-element array whose first element is an accessor for retrieving an ndarray element and whose second element is an accessor for setting an ndarray element.
5858
*
5959
* @param {ndarrayLike} x - ndarray-like object
60-
* @param {string} x.dtype - data type
60+
* @param {*} x.dtype - data type
6161
* @param {Collection} x.data - data buffer
6262
* @param {NonNegativeIntegerArray} x.shape - dimensions
6363
* @param {IntegerArray} x.strides - stride lengths

0 commit comments

Comments
 (0)