Skip to content

Commit dfe9446

Browse files
committed
Auto-generated commit
1 parent ba52511 commit dfe9446

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

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+
- [`0d32b1b`](https://github.com/stdlib-js/stdlib/commit/0d32b1b98dc0bf319b6330e9535e2a3ba0980adf) - add `toReversedDimension` to namespace
1314
- [`287c085`](https://github.com/stdlib-js/stdlib/commit/287c08582a945209e4b6da083fbd8102b8bf8321) - add `ndarray/to-reversed-dimension` [(#10058)](https://github.com/stdlib-js/stdlib/pull/10058)
1415
- [`e7a30dc`](https://github.com/stdlib-js/stdlib/commit/e7a30dcc468a1db97d78ae16cea85090a13d5fac) - add `broadcastScalar` to namespace
1516
- [`6bc5ee5`](https://github.com/stdlib-js/stdlib/commit/6bc5ee550629c3aaae7687630c315d607c185ba9) - add `ndarray/broadcast-scalar` [(#9916)](https://github.com/stdlib-js/stdlib/pull/9916)
@@ -753,6 +754,7 @@ A total of 43 issues were closed in this release:
753754

754755
<details>
755756

757+
- [`0d32b1b`](https://github.com/stdlib-js/stdlib/commit/0d32b1b98dc0bf319b6330e9535e2a3ba0980adf) - **feat:** add `toReversedDimension` to namespace _(by Athan Reines)_
756758
- [`287c085`](https://github.com/stdlib-js/stdlib/commit/287c08582a945209e4b6da083fbd8102b8bf8321) - **feat:** add `ndarray/to-reversed-dimension` [(#10058)](https://github.com/stdlib-js/stdlib/pull/10058) _(by Muhammad Haris, Athan Reines)_
757759
- [`e7a30dc`](https://github.com/stdlib-js/stdlib/commit/e7a30dcc468a1db97d78ae16cea85090a13d5fac) - **feat:** add `broadcastScalar` to namespace _(by Athan Reines)_
758760
- [`6bc5ee5`](https://github.com/stdlib-js/stdlib/commit/6bc5ee550629c3aaae7687630c315d607c185ba9) - **feat:** add `ndarray/broadcast-scalar` [(#9916)](https://github.com/stdlib-js/stdlib/pull/9916) _(by Muhammad Haris, Athan Reines)_

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,15 @@ setReadOnly( ns, 'ndarray2json', require( './../to-json' ) );
864864
*/
865865
setReadOnly( ns, 'toReversed', require( './../to-reversed' ) );
866866

867+
/**
868+
* @name toReversedDimension
869+
* @memberof ns
870+
* @readonly
871+
* @type {Function}
872+
* @see {@link module:@stdlib/ndarray/to-reversed-dimension}
873+
*/
874+
setReadOnly( ns, 'toReversedDimension', require( './../to-reversed-dimension' ) );
875+
867876
/**
868877
* @name unshift
869878
* @memberof ns

0 commit comments

Comments
 (0)