Skip to content

Commit 14f3dc1

Browse files
committed
Auto-generated commit
1 parent d7042fb commit 14f3dc1

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

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+
- [`c412a6e`](https://github.com/stdlib-js/stdlib/commit/c412a6efedf30e63a34d2ac7850bd69fc89e6f48) - add `toFlippedud` to namespace
14+
- [`12cbc6b`](https://github.com/stdlib-js/stdlib/commit/12cbc6bfe422012e85e51affa6411c6779251d5e) - add `toFlippedlr` to namespace
1315
- [`1df171f`](https://github.com/stdlib-js/stdlib/commit/1df171ff8d9df70a0c7ea21a2b1b4fc3c71cd4c8) - add `ndarray/to-flippedud` [(#11031)](https://github.com/stdlib-js/stdlib/pull/11031)
1416
- [`a1f8442`](https://github.com/stdlib-js/stdlib/commit/a1f8442b4ed11aceb97c2b5e6e7e8fdc18d8317b) - add `ndarray/to-flippedlr` [(#11016)](https://github.com/stdlib-js/stdlib/pull/11016)
1517
- [`98b02ad`](https://github.com/stdlib-js/stdlib/commit/98b02adb85c1a0644510dddd2fab2c1b6b61c2eb) - update `ndarray/base` TypeScript declarations [(#10584)](https://github.com/stdlib-js/stdlib/pull/10584)
@@ -786,6 +788,8 @@ A total of 44 issues were closed in this release:
786788

787789
<details>
788790

791+
- [`c412a6e`](https://github.com/stdlib-js/stdlib/commit/c412a6efedf30e63a34d2ac7850bd69fc89e6f48) - **feat:** add `toFlippedud` to namespace _(by Athan Reines)_
792+
- [`12cbc6b`](https://github.com/stdlib-js/stdlib/commit/12cbc6bfe422012e85e51affa6411c6779251d5e) - **feat:** add `toFlippedlr` to namespace _(by Athan Reines)_
789793
- [`1df171f`](https://github.com/stdlib-js/stdlib/commit/1df171ff8d9df70a0c7ea21a2b1b4fc3c71cd4c8) - **feat:** add `ndarray/to-flippedud` [(#11031)](https://github.com/stdlib-js/stdlib/pull/11031) _(by Muhammad Haris)_
790794
- [`6f315ad`](https://github.com/stdlib-js/stdlib/commit/6f315ad87f17870b81b176846bec718057ddadf6) - **bench:** refactor to use string interpolation in `ndarray/base/binary` [(#11018)](https://github.com/stdlib-js/stdlib/pull/11018) _(by Partha Das)_
791795
- [`5a84c39`](https://github.com/stdlib-js/stdlib/commit/5a84c39850bf22552f8ab108d4cc3255a3a0cdf6) - **bench:** refactor to use string interpolation in `ndarray/base/buffer` [(#11020)](https://github.com/stdlib-js/stdlib/pull/11020) _(by Partha Das)_

lib/index.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -846,6 +846,24 @@ setReadOnly( ns, 'ndarray2array', require( './../to-array' ) );
846846
*/
847847
setReadOnly( ns, 'ndarray2fancy', require( './../to-fancy' ) );
848848

849+
/**
850+
* @name toFlippedlr
851+
* @memberof ns
852+
* @readonly
853+
* @type {Function}
854+
* @see {@link module:@stdlib/ndarray/to-flippedlr}
855+
*/
856+
setReadOnly( ns, 'toFlippedlr', require( './../to-flippedlr' ) );
857+
858+
/**
859+
* @name toFlippedud
860+
* @memberof ns
861+
* @readonly
862+
* @type {Function}
863+
* @see {@link module:@stdlib/ndarray/to-flippedud}
864+
*/
865+
setReadOnly( ns, 'toFlippedud', require( './../to-flippedud' ) );
866+
849867
/**
850868
* @name ndarray2json
851869
* @memberof ns

0 commit comments

Comments
 (0)