Skip to content

Commit 1a21329

Browse files
committed
Auto-generated commit
1 parent 3483e74 commit 1a21329

3 files changed

Lines changed: 22 additions & 0 deletions

File tree

CHANGELOG.md

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

1111
### Features
1212

13+
- [`10c631c`](https://github.com/stdlib-js/stdlib/commit/10c631c71f13f182aada47303cb5dced6e69bbec) - add `toRot90` to namespace
14+
- [`3637eb8`](https://github.com/stdlib-js/stdlib/commit/3637eb8e5767a32f8c5c78682fd6c9aebc0a7b09) - add `toRot180` to namespace
1315
- [`37197d9`](https://github.com/stdlib-js/stdlib/commit/37197d9632d9c94987cf1a9e0736e56fb477c76a) - add `ndarray/base/to-rot180` [(#11778)](https://github.com/stdlib-js/stdlib/pull/11778)
1416
- [`e1c8c4d`](https://github.com/stdlib-js/stdlib/commit/e1c8c4d056e8395586d3134a8192ce1d0d3d3fbf) - add `ndarray/to-rot90` [(#11775)](https://github.com/stdlib-js/stdlib/pull/11775)
1517
- [`ec583b8`](https://github.com/stdlib-js/stdlib/commit/ec583b81d55d0eadcfcb64c23f96966a4bc9224d) - add `toRotl90` to namespace
@@ -896,6 +898,8 @@ A total of 49 issues were closed in this release:
896898

897899
<details>
898900

901+
- [`10c631c`](https://github.com/stdlib-js/stdlib/commit/10c631c71f13f182aada47303cb5dced6e69bbec) - **feat:** add `toRot90` to namespace _(by Athan Reines)_
902+
- [`3637eb8`](https://github.com/stdlib-js/stdlib/commit/3637eb8e5767a32f8c5c78682fd6c9aebc0a7b09) - **feat:** add `toRot180` to namespace _(by Athan Reines)_
899903
- [`37197d9`](https://github.com/stdlib-js/stdlib/commit/37197d9632d9c94987cf1a9e0736e56fb477c76a) - **feat:** add `ndarray/base/to-rot180` [(#11778)](https://github.com/stdlib-js/stdlib/pull/11778) _(by Muhammad Haris)_
900904
- [`e1c8c4d`](https://github.com/stdlib-js/stdlib/commit/e1c8c4d056e8395586d3134a8192ce1d0d3d3fbf) - **feat:** add `ndarray/to-rot90` [(#11775)](https://github.com/stdlib-js/stdlib/pull/11775) _(by Muhammad Haris, Athan Reines)_
901905
- [`7442c80`](https://github.com/stdlib-js/stdlib/commit/7442c80a194a19e0784a8093afb743146dd3a668) - **docs:** update namespace table of contents [(#11789)](https://github.com/stdlib-js/stdlib/pull/11789) _(by stdlib-bot, Philipp Burckhardt)_

base/lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1552,6 +1552,15 @@ setReadOnly( ns, 'toReversedDimension', require( './../../base/to-reversed-dimen
15521552
*/
15531553
setReadOnly( ns, 'toRot90', require( './../../base/to-rot90' ) );
15541554

1555+
/**
1556+
* @name toRot180
1557+
* @memberof ns
1558+
* @readonly
1559+
* @type {Function}
1560+
* @see {@link module:@stdlib/ndarray/base/to-rot180}
1561+
*/
1562+
setReadOnly( ns, 'toRot180', require( './../../base/to-rot180' ) );
1563+
15551564
/**
15561565
* @name toRotl90
15571566
* @memberof ns

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -999,6 +999,15 @@ setReadOnly( ns, 'toReversed', require( './../to-reversed' ) );
999999
*/
10001000
setReadOnly( ns, 'toReversedDimension', require( './../to-reversed-dimension' ) );
10011001

1002+
/**
1003+
* @name toRot90
1004+
* @memberof ns
1005+
* @readonly
1006+
* @type {Function}
1007+
* @see {@link module:@stdlib/ndarray/to-rot90}
1008+
*/
1009+
setReadOnly( ns, 'toRot90', require( './../to-rot90' ) );
1010+
10021011
/**
10031012
* @name toRotr90
10041013
* @memberof ns

0 commit comments

Comments
 (0)