Skip to content

Commit 7c720e7

Browse files
committed
Auto-generated commit
1 parent 152d178 commit 7c720e7

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

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+
- [`9221bdb`](https://github.com/stdlib-js/stdlib/commit/9221bdb56bac8544a387c8b8f74ae69ae5ec2961) - add `toTransposed` to namespace
1314
- [`5606366`](https://github.com/stdlib-js/stdlib/commit/560636601a3ebbc74e58ba18752ba832c3548215) - add `ndarray/base/to-transposed` [(#10499)](https://github.com/stdlib-js/stdlib/pull/10499)
1415
- [`01a25b3`](https://github.com/stdlib-js/stdlib/commit/01a25b340fc172d9754d027cc09330e0be32babb) - add `unflattenShape` to namespace
1516
- [`4049c73`](https://github.com/stdlib-js/stdlib/commit/4049c7358fb474ef3b7c3f1a1dc94206c37fd105) - add `ndarray/base/unflatten-shape` [(#10441)](https://github.com/stdlib-js/stdlib/pull/10441)
@@ -757,6 +758,7 @@ A total of 43 issues were closed in this release:
757758

758759
<details>
759760

761+
- [`9221bdb`](https://github.com/stdlib-js/stdlib/commit/9221bdb56bac8544a387c8b8f74ae69ae5ec2961) - **feat:** add `toTransposed` to namespace _(by Athan Reines)_
760762
- [`5606366`](https://github.com/stdlib-js/stdlib/commit/560636601a3ebbc74e58ba18752ba832c3548215) - **feat:** add `ndarray/base/to-transposed` [(#10499)](https://github.com/stdlib-js/stdlib/pull/10499) _(by Muhammad Haris, Athan Reines)_
761763
- [`01a25b3`](https://github.com/stdlib-js/stdlib/commit/01a25b340fc172d9754d027cc09330e0be32babb) - **feat:** add `unflattenShape` to namespace _(by Athan Reines)_
762764
- [`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)_

base/lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1345,6 +1345,15 @@ setReadOnly( ns, 'toReversed', require( './../../base/to-reversed' ) );
13451345
*/
13461346
setReadOnly( ns, 'toReversedDimension', require( './../../base/to-reversed-dimension' ) );
13471347

1348+
/**
1349+
* @name toTransposed
1350+
* @memberof ns
1351+
* @readonly
1352+
* @type {Function}
1353+
* @see {@link module:@stdlib/ndarray/base/to-transposed}
1354+
*/
1355+
setReadOnly( ns, 'toTransposed', require( './../../base/to-transposed' ) );
1356+
13481357
/**
13491358
* @name toUniqueNormalizedIndices
13501359
* @memberof ns

0 commit comments

Comments
 (0)