Skip to content

Commit 45cc1d6

Browse files
committed
Auto-generated commit
1 parent d546374 commit 45cc1d6

File tree

5 files changed

+39
-3
lines changed

5 files changed

+39
-3
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
##### Features
2222

23+
- [`873b085`](https://github.com/stdlib-js/stdlib/commit/873b085ae0183426f3e8e831a50a42e2df3ba13d) - add `nditerSubarrays` to namespace
2324
- [`46aec25`](https://github.com/stdlib-js/stdlib/commit/46aec25aac5d4a0c8a3fd7b719dd6a080e59beb8) - add `nditerSelectDimension` to namespace
2425

2526
</section>
@@ -54,6 +55,28 @@
5455

5556
<!-- /.package -->
5657

58+
<section class="package" id="ndarray-iter-subarrays-unreleased">
59+
60+
#### [@stdlib/ndarray/iter/subarrays](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/iter/subarrays)
61+
62+
<details>
63+
64+
<section class="features">
65+
66+
##### Features
67+
68+
- [`fd9a5c2`](https://github.com/stdlib-js/stdlib/commit/fd9a5c2e29508ab5b393e2273ddb7463be6affb3) - add `ndarray/iter/subarrays`
69+
70+
</section>
71+
72+
<!-- /.features -->
73+
74+
</details>
75+
76+
</section>
77+
78+
<!-- /.package -->
79+
5780
</section>
5881

5982
<!-- /.packages -->
@@ -76,6 +99,8 @@ A total of 1 person contributed to this release. Thank you to this contributor:
7699

77100
<details>
78101

102+
- [`873b085`](https://github.com/stdlib-js/stdlib/commit/873b085ae0183426f3e8e831a50a42e2df3ba13d) - **feat:** add `nditerSubarrays` to namespace _(by Athan Reines)_
103+
- [`fd9a5c2`](https://github.com/stdlib-js/stdlib/commit/fd9a5c2e29508ab5b393e2273ddb7463be6affb3) - **feat:** add `ndarray/iter/subarrays` _(by Athan Reines)_
79104
- [`46aec25`](https://github.com/stdlib-js/stdlib/commit/46aec25aac5d4a0c8a3fd7b719dd6a080e59beb8) - **feat:** add `nditerSelectDimension` to namespace _(by Athan Reines)_
80105
- [`6dce19b`](https://github.com/stdlib-js/stdlib/commit/6dce19b2a2dfae6159257dab0c52a8421e0861d2) - **feat:** add `ndarray/iter/select-dimension` _(by Athan Reines)_
81106
- [`4ec7a03`](https://github.com/stdlib-js/stdlib/commit/4ec7a031214836b442e5bce57b57b20e166ef8a4) - **refactor:** improve type specificity _(by Athan Reines)_

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,15 @@ setReadOnly( ns, 'nditerRows', require( '@stdlib/ndarray-iter-rows' ) );
117117
*/
118118
setReadOnly( ns, 'nditerSelectDimension', require( '@stdlib/ndarray-iter-select-dimension' ) );
119119

120+
/**
121+
* @name nditerSubarrays
122+
* @memberof ns
123+
* @readonly
124+
* @type {Function}
125+
* @see {@link module:@stdlib/ndarray/iter/subarrays}
126+
*/
127+
setReadOnly( ns, 'nditerSubarrays', require( '@stdlib/ndarray-iter-subarrays' ) );
128+
120129
/**
121130
* @name nditer2arrayEach
122131
* @memberof ns

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
"@stdlib/ndarray-iter-row-entries": "^0.2.2",
4646
"@stdlib/ndarray-iter-rows": "^0.2.2",
4747
"@stdlib/ndarray-iter-select-dimension": "github:stdlib-js/ndarray-iter-select-dimension#main",
48+
"@stdlib/ndarray-iter-subarrays": "github:stdlib-js/ndarray-iter-subarrays#main",
4849
"@stdlib/ndarray-iter-to-array-each": "^0.2.1",
4950
"@stdlib/ndarray-iter-values": "^0.2.2",
5051
"@stdlib/utils-define-read-only-property": "^0.2.2"
@@ -65,6 +66,7 @@
6566
"@stdlib/assert-is-nonnegative-integer-array": "^0.2.2",
6667
"@stdlib/assert-is-number": "^0.2.2",
6768
"@stdlib/assert-is-plain-object": "^0.2.2",
69+
"@stdlib/assert-is-positive-integer": "^0.2.2",
6870
"@stdlib/ndarray-array": "^0.2.1",
6971
"@stdlib/ndarray-base-assert-is-order": "^0.2.2",
7072
"@stdlib/ndarray-base-assert-is-read-only": "^0.2.2",

0 commit comments

Comments
 (0)