Skip to content

Commit 1c72b9e

Browse files
committed
Auto-generated commit
1 parent f532b46 commit 1c72b9e

3 files changed

Lines changed: 33 additions & 0 deletions

File tree

CHANGELOG.md

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

1111
### Features
1212

13+
- [`9d3b90d`](https://github.com/stdlib-js/stdlib/commit/9d3b90d4f3464f0aa73a4fcf5ac1eb1dcdf5bf96) - add `toRotr90` to namespace
14+
- [`575ae77`](https://github.com/stdlib-js/stdlib/commit/575ae7709faa304df83a96aa99994cd93611835f) - add `appendSingletonDimensions` to namespace
15+
- [`44ec734`](https://github.com/stdlib-js/stdlib/commit/44ec734bbf65622c8e5ba4cae897f0f0f19bcd85) - add `toRot90` to namespace
1316
- [`5a57084`](https://github.com/stdlib-js/stdlib/commit/5a570843aa35513c4061dda9b45151d406f53ccf) - add `ndarray/to-rotr90` [(#11770)](https://github.com/stdlib-js/stdlib/pull/11770)
1417
- [`8cb6c7c`](https://github.com/stdlib-js/stdlib/commit/8cb6c7c7a1d109ec00a04312ecf23532036f45ac) - add `ndarray/base/append-singleton-dimensions` [(#11782)](https://github.com/stdlib-js/stdlib/pull/11782)
1518
- [`94fc2ce`](https://github.com/stdlib-js/stdlib/commit/94fc2ced847969980cae2241b175f0f9f799658e) - add `ndarray/base/to-rot90` [(#11748)](https://github.com/stdlib-js/stdlib/pull/11748)
@@ -884,6 +887,9 @@ A total of 49 issues were closed in this release:
884887

885888
<details>
886889

890+
- [`9d3b90d`](https://github.com/stdlib-js/stdlib/commit/9d3b90d4f3464f0aa73a4fcf5ac1eb1dcdf5bf96) - **feat:** add `toRotr90` to namespace _(by Athan Reines)_
891+
- [`575ae77`](https://github.com/stdlib-js/stdlib/commit/575ae7709faa304df83a96aa99994cd93611835f) - **feat:** add `appendSingletonDimensions` to namespace _(by Athan Reines)_
892+
- [`44ec734`](https://github.com/stdlib-js/stdlib/commit/44ec734bbf65622c8e5ba4cae897f0f0f19bcd85) - **feat:** add `toRot90` to namespace _(by Athan Reines)_
887893
- [`5a57084`](https://github.com/stdlib-js/stdlib/commit/5a570843aa35513c4061dda9b45151d406f53ccf) - **feat:** add `ndarray/to-rotr90` [(#11770)](https://github.com/stdlib-js/stdlib/pull/11770) _(by Muhammad Haris, Athan Reines)_
888894
- [`8cb6c7c`](https://github.com/stdlib-js/stdlib/commit/8cb6c7c7a1d109ec00a04312ecf23532036f45ac) - **feat:** add `ndarray/base/append-singleton-dimensions` [(#11782)](https://github.com/stdlib-js/stdlib/pull/11782) _(by Muhammad Haris, Athan Reines)_
889895
- [`3ca7c21`](https://github.com/stdlib-js/stdlib/commit/3ca7c2179081a36fa279dbb1e12f8e81d811e997) - **docs:** propagate recent `ndarray/base` comment and note fixes to sibling packages [(#11762)](https://github.com/stdlib-js/stdlib/pull/11762) _(by Philipp Burckhardt)_

base/lib/index.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,15 @@ setReadOnly( ns, 'any', require( './../../base/any' ) );
5858
*/
5959
setReadOnly( ns, 'anyBy', require( './../../base/any-by' ) );
6060

61+
/**
62+
* @name appendSingletonDimensions
63+
* @memberof ns
64+
* @readonly
65+
* @type {Function}
66+
* @see {@link module:@stdlib/ndarray/base/append-singleton-dimensions}
67+
*/
68+
setReadOnly( ns, 'appendSingletonDimensions', require( './../../base/append-singleton-dimensions' ) );
69+
6170
/**
6271
* @name assert
6372
* @memberof ns
@@ -1534,6 +1543,15 @@ setReadOnly( ns, 'toReversed', require( './../../base/to-reversed' ) );
15341543
*/
15351544
setReadOnly( ns, 'toReversedDimension', require( './../../base/to-reversed-dimension' ) );
15361545

1546+
/**
1547+
* @name toRot90
1548+
* @memberof ns
1549+
* @readonly
1550+
* @type {Function}
1551+
* @see {@link module:@stdlib/ndarray/base/to-rot90}
1552+
*/
1553+
setReadOnly( ns, 'toRot90', require( './../../base/to-rot90' ) );
1554+
15371555
/**
15381556
* @name toRotr90
15391557
* @memberof ns

lib/index.js

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

984+
/**
985+
* @name toRotr90
986+
* @memberof ns
987+
* @readonly
988+
* @type {Function}
989+
* @see {@link module:@stdlib/ndarray/to-rotr90}
990+
*/
991+
setReadOnly( ns, 'toRotr90', require( './../to-rotr90' ) );
992+
984993
/**
985994
* @name ndarray2string
986995
* @memberof ns

0 commit comments

Comments
 (0)