Skip to content

Commit de18be6

Browse files
committed
Auto-generated commit
1 parent 1722b44 commit de18be6

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+
- [`c88ea56`](https://github.com/stdlib-js/stdlib/commit/c88ea56a2f3acfe5ce345108eb42ea991b689d3f) - add `toRotr90` to namespace
1314
- [`465a072`](https://github.com/stdlib-js/stdlib/commit/465a072ec949832752bd1aa2bdb7a3b165e90763) - add `ndarray/base/to-rotr90` [(#11747)](https://github.com/stdlib-js/stdlib/pull/11747)
1415
- [`bb94409`](https://github.com/stdlib-js/stdlib/commit/bb944095335edac473c0c655d7300228ed856ca5) - add `rot90` to namespace
1516
- [`902e522`](https://github.com/stdlib-js/stdlib/commit/902e522762ec678bc548d6a503d5a94046e708f1) - add `ndarray/rot90` [(#11705)](https://github.com/stdlib-js/stdlib/pull/11705)
@@ -880,6 +881,7 @@ A total of 49 issues were closed in this release:
880881

881882
<details>
882883

884+
- [`c88ea56`](https://github.com/stdlib-js/stdlib/commit/c88ea56a2f3acfe5ce345108eb42ea991b689d3f) - **feat:** add `toRotr90` to namespace _(by Athan Reines)_
883885
- [`465a072`](https://github.com/stdlib-js/stdlib/commit/465a072ec949832752bd1aa2bdb7a3b165e90763) - **feat:** add `ndarray/base/to-rotr90` [(#11747)](https://github.com/stdlib-js/stdlib/pull/11747) _(by Muhammad Haris, Athan Reines)_
884886
- [`1bb47ae`](https://github.com/stdlib-js/stdlib/commit/1bb47aee4385a96718afb38792d96ec5ec09e7da) - **docs:** fix comment _(by Athan Reines)_
885887
- [`8c95fbf`](https://github.com/stdlib-js/stdlib/commit/8c95fbf9f000fba1e6a302792a33ac7394262a1c) - **docs:** fix comment _(by Athan Reines)_

base/lib/index.js

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

1537+
/**
1538+
* @name toRotr90
1539+
* @memberof ns
1540+
* @readonly
1541+
* @type {Function}
1542+
* @see {@link module:@stdlib/ndarray/base/to-rotr90}
1543+
*/
1544+
setReadOnly( ns, 'toRotr90', require( './../../base/to-rotr90' ) );
1545+
15371546
/**
15381547
* @name toTransposed
15391548
* @memberof ns

0 commit comments

Comments
 (0)