Skip to content

Commit f253e74

Browse files
committed
Auto-generated commit
1 parent 5eea470 commit f253e74

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+
- [`1ab30a1`](https://github.com/stdlib-js/stdlib/commit/1ab30a16866d523544f06017e56a70e68d9933cf) - add `rotl90` to namespace
1314
- [`9ef9c56`](https://github.com/stdlib-js/stdlib/commit/9ef9c56b8d3fccad2b75d4f4316f7a99fa5bc660) - add `ndarray/base/rotl90` [(#11633)](https://github.com/stdlib-js/stdlib/pull/11633)
1415
- [`3b2c72e`](https://github.com/stdlib-js/stdlib/commit/3b2c72e1a3a24bdba3702b64269cab622481e240) - add `rotr90` to namespace
1516
- [`a44f4d3`](https://github.com/stdlib-js/stdlib/commit/a44f4d395d772927cb9f6435b939580d4c4ad783) - add `ndarray/rotr90` [(#11631)](https://github.com/stdlib-js/stdlib/pull/11631)
@@ -863,6 +864,7 @@ A total of 49 issues were closed in this release:
863864

864865
<details>
865866

867+
- [`1ab30a1`](https://github.com/stdlib-js/stdlib/commit/1ab30a16866d523544f06017e56a70e68d9933cf) - **feat:** add `rotl90` to namespace _(by Athan Reines)_
866868
- [`9ef9c56`](https://github.com/stdlib-js/stdlib/commit/9ef9c56b8d3fccad2b75d4f4316f7a99fa5bc660) - **feat:** add `ndarray/base/rotl90` [(#11633)](https://github.com/stdlib-js/stdlib/pull/11633) _(by Muhammad Haris)_
867869
- [`2672e84`](https://github.com/stdlib-js/stdlib/commit/2672e84fbdd07c44dfd4b6c0fca31e7f4695d247) - **docs:** update toc _(by Athan Reines)_
868870
- [`3b2c72e`](https://github.com/stdlib-js/stdlib/commit/3b2c72e1a3a24bdba3702b64269cab622481e240) - **feat:** add `rotr90` to namespace _(by Athan Reines)_

base/lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1183,6 +1183,15 @@ setReadOnly( ns, 'reverse', require( './../../base/reverse' ) );
11831183
*/
11841184
setReadOnly( ns, 'reverseDimension', require( './../../base/reverse-dimension' ) );
11851185

1186+
/**
1187+
* @name rotl90
1188+
* @memberof ns
1189+
* @readonly
1190+
* @type {Function}
1191+
* @see {@link module:@stdlib/ndarray/base/rotl90}
1192+
*/
1193+
setReadOnly( ns, 'rotl90', require( './../../base/rotl90' ) );
1194+
11861195
/**
11871196
* @name rotr90
11881197
* @memberof ns

0 commit comments

Comments
 (0)