Skip to content

Commit 9682521

Browse files
committed
Auto-generated commit
1 parent 8dc5c5d commit 9682521

3 files changed

Lines changed: 13 additions & 1 deletion

File tree

CHANGELOG.md

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

1111
### Features
1212

13+
- [`851962b`](https://github.com/stdlib-js/stdlib/commit/851962b6ea17e9ac3d0ab09617432121e007a0ed) - add `toReversedDimensions` to namespace
1314
- [`b6e7646`](https://github.com/stdlib-js/stdlib/commit/b6e764678401a9a7eb387c0b84f2929299108bab) - add `ndarray/to-reversed-dimensions` [(#11981)](https://github.com/stdlib-js/stdlib/pull/11981)
1415
- [`e0a3342`](https://github.com/stdlib-js/stdlib/commit/e0a33421dde2803276ad95491519f8839415d93c) - add `outputOrder` to namespace
1516
- [`52bc84e`](https://github.com/stdlib-js/stdlib/commit/52bc84e510174894e39456fc301d1f9045ae444b) - add `ndarray/base/output-order`
@@ -926,6 +927,8 @@ A total of 49 issues were closed in this release:
926927

927928
<details>
928929

930+
- [`4985313`](https://github.com/stdlib-js/stdlib/commit/4985313d48f7446d5222a1f405b68546cb7c2058) - **docs:** update ToC _(by Athan Reines)_
931+
- [`851962b`](https://github.com/stdlib-js/stdlib/commit/851962b6ea17e9ac3d0ab09617432121e007a0ed) - **feat:** add `toReversedDimensions` to namespace _(by Athan Reines)_
929932
- [`b6e7646`](https://github.com/stdlib-js/stdlib/commit/b6e764678401a9a7eb387c0b84f2929299108bab) - **feat:** add `ndarray/to-reversed-dimensions` [(#11981)](https://github.com/stdlib-js/stdlib/pull/11981) _(by Muhammad Haris, Athan Reines)_
930933
- [`2993e90`](https://github.com/stdlib-js/stdlib/commit/2993e90541c0e9dca7201e822668c8ca026771f1) - **chore:** follow-up fixes [(#11966)](https://github.com/stdlib-js/stdlib/pull/11966) _(by Philipp Burckhardt)_
931934
- [`405a8c7`](https://github.com/stdlib-js/stdlib/commit/405a8c7059dbe1c313281f0a8db5440f0e08c461) - **refactor:** replace internal utility _(by Athan Reines)_

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ The namespace exports the following functions to create multidimensional arrays:
102102

103103
The namespace exports the following functions to manipulate multidimensional arrays:
104104

105-
<!-- <toc pattern="+(broadcast-array|broadcast-arrays|broadcast-scalar|broadcast-scalar-like|colcat|concat|concat1d|diagonal|fill|fill-by|fill-slice|flatten|flatten-by|flatten-from|flatten-from-by|flip|fliplr|flipud|hconcat|map|maybe-broadcast-array|maybe-broadcast-arrays|pop|prepend-singleton-dimensions|push|remove-singleton-dimensions|reverse|reverse-dimension|reverse-dimensions|rot90|rot180|rotl90|rotr90|rowcat|shift|slice|slice-assign|slice-dimension|slice-dimension-from|slice-dimension-to|slice-from|slice-to|spread-dimensions|to-flippedlr|to-flippedud|to-reversed|to-reversed-dimension|to-rot90|to-rot180|to-rotl90|to-rotr90|to-unflattened|unflatten|unshift|vconcat|with)"> -->
105+
<!-- <toc pattern="+(broadcast-array|broadcast-arrays|broadcast-scalar|broadcast-scalar-like|colcat|concat|concat1d|diagonal|fill|fill-by|fill-slice|flatten|flatten-by|flatten-from|flatten-from-by|flip|fliplr|flipud|hconcat|map|maybe-broadcast-array|maybe-broadcast-arrays|pop|prepend-singleton-dimensions|push|remove-singleton-dimensions|reverse|reverse-dimension|reverse-dimensions|rot90|rot180|rotl90|rotr90|rowcat|shift|slice|slice-assign|slice-dimension|slice-dimension-from|slice-dimension-to|slice-from|slice-to|spread-dimensions|to-flippedlr|to-flippedud|to-reversed|to-reversed-dimension|to-reversed-dimensions|to-rot90|to-rot180|to-rotl90|to-rotr90|to-unflattened|unflatten|unshift|vconcat|with)"> -->
106106

107107
<div class="namespace-toc">
108108

lib/index.js

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

1047+
/**
1048+
* @name toReversedDimensions
1049+
* @memberof ns
1050+
* @readonly
1051+
* @type {Function}
1052+
* @see {@link module:@stdlib/ndarray/to-reversed-dimensions}
1053+
*/
1054+
setReadOnly( ns, 'toReversedDimensions', require( './../to-reversed-dimensions' ) );
1055+
10471056
/**
10481057
* @name toRot90
10491058
* @memberof ns

0 commit comments

Comments
 (0)