Skip to content

Commit 909e215

Browse files
committed
Auto-generated commit
1 parent 16cc8ea commit 909e215

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
### Features
1212

13+
- [`01a25b3`](https://github.com/stdlib-js/stdlib/commit/01a25b340fc172d9754d027cc09330e0be32babb) - add `unflattenShape` to namespace
1314
- [`4049c73`](https://github.com/stdlib-js/stdlib/commit/4049c7358fb474ef3b7c3f1a1dc94206c37fd105) - add `ndarray/base/unflatten-shape` [(#10441)](https://github.com/stdlib-js/stdlib/pull/10441)
1415
- [`0d32b1b`](https://github.com/stdlib-js/stdlib/commit/0d32b1b98dc0bf319b6330e9535e2a3ba0980adf) - add `toReversedDimension` to namespace
1516
- [`287c085`](https://github.com/stdlib-js/stdlib/commit/287c08582a945209e4b6da083fbd8102b8bf8321) - add `ndarray/to-reversed-dimension` [(#10058)](https://github.com/stdlib-js/stdlib/pull/10058)
@@ -755,6 +756,7 @@ A total of 43 issues were closed in this release:
755756

756757
<details>
757758

759+
- [`01a25b3`](https://github.com/stdlib-js/stdlib/commit/01a25b340fc172d9754d027cc09330e0be32babb) - **feat:** add `unflattenShape` to namespace _(by Athan Reines)_
758760
- [`4049c73`](https://github.com/stdlib-js/stdlib/commit/4049c7358fb474ef3b7c3f1a1dc94206c37fd105) - **feat:** add `ndarray/base/unflatten-shape` [(#10441)](https://github.com/stdlib-js/stdlib/pull/10441) _(by Muhammad Haris, Athan Reines)_
759761
- [`0d32b1b`](https://github.com/stdlib-js/stdlib/commit/0d32b1b98dc0bf319b6330e9535e2a3ba0980adf) - **feat:** add `toReversedDimension` to namespace _(by Athan Reines)_
760762
- [`287c085`](https://github.com/stdlib-js/stdlib/commit/287c08582a945209e4b6da083fbd8102b8bf8321) - **feat:** add `ndarray/to-reversed-dimension` [(#10058)](https://github.com/stdlib-js/stdlib/pull/10058) _(by Muhammad Haris, Athan Reines)_

base/lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1543,6 +1543,15 @@ setReadOnly( ns, 'unaryStrided1dDispatchFactory', require( './../../base/unary-s
15431543
*/
15441544
setReadOnly( ns, 'unaryBlockSize', require( './../../base/unary-tiling-block-size' ) );
15451545

1546+
/**
1547+
* @name unflattenShape
1548+
* @memberof ns
1549+
* @readonly
1550+
* @type {Function}
1551+
* @see {@link module:@stdlib/ndarray/base/unflatten-shape}
1552+
*/
1553+
setReadOnly( ns, 'unflattenShape', require( './../../base/unflatten-shape' ) );
1554+
15461555
/**
15471556
* @name vind2bind
15481557
* @memberof ns

0 commit comments

Comments
 (0)