Skip to content

Commit e41dfbe

Browse files
committed
Auto-generated commit
1 parent f837f3f commit e41dfbe

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+
- [`186eaa3`](https://github.com/stdlib-js/stdlib/commit/186eaa37ff742abc21f39fa7517cb87304e88b9b) - add `last` to namespace
1314
- [`9e8bb89`](https://github.com/stdlib-js/stdlib/commit/9e8bb89bc03487354d9a6ed8eff2595c6239cb53) - add `ndarray/last` [(#11881)](https://github.com/stdlib-js/stdlib/pull/11881)
1415
- [`30a2cc1`](https://github.com/stdlib-js/stdlib/commit/30a2cc1a3fd972f532a853f5a94b68a5fb7e38df) - add `diagonal` and `reverseDimensions` to namespace
1516
- [`632bef3`](https://github.com/stdlib-js/stdlib/commit/632bef35c4b9d42d7707c1f4e6f0b3c9ed002144) - add `ndarray/base/diagonal` [(#11851)](https://github.com/stdlib-js/stdlib/pull/11851)
@@ -910,6 +911,8 @@ A total of 49 issues were closed in this release:
910911

911912
<details>
912913

914+
- [`186eaa3`](https://github.com/stdlib-js/stdlib/commit/186eaa37ff742abc21f39fa7517cb87304e88b9b) - **feat:** add `last` to namespace _(by Athan Reines)_
915+
- [`864053b`](https://github.com/stdlib-js/stdlib/commit/864053bd85bbcdf3a0e113e8289b4e8b00ae8031) - **docs:** update ToC _(by Athan Reines)_
913916
- [`9e8bb89`](https://github.com/stdlib-js/stdlib/commit/9e8bb89bc03487354d9a6ed8eff2595c6239cb53) - **feat:** add `ndarray/last` [(#11881)](https://github.com/stdlib-js/stdlib/pull/11881) _(by Muhammad Haris, Athan Reines)_
914917
- [`e8183a7`](https://github.com/stdlib-js/stdlib/commit/e8183a73b1e97d01a85777bcaa15b35676855a9b) - **docs:** update ToC _(by Athan Reines)_
915918
- [`30a2cc1`](https://github.com/stdlib-js/stdlib/commit/30a2cc1a3fd972f532a853f5a94b68a5fb7e38df) - **feat:** add `diagonal` and `reverseDimensions` to namespace _(by Athan Reines)_

README.md

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

220220
The namespace exports the following functions to index multidimensional arrays:
221221

222-
<!-- <toc pattern="+(at|ind2sub|index|index-modes|sub2ind)"> -->
222+
<!-- <toc pattern="+(at|ind2sub|index|index-modes|last|sub2ind)"> -->
223223

224224
<div class="namespace-toc">
225225

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -522,6 +522,15 @@ setReadOnly( ns, 'inputCastingPolicies', require( './../input-casting-policies'
522522
*/
523523
setReadOnly( ns, 'iter', require( './../iter' ) );
524524

525+
/**
526+
* @name last
527+
* @memberof ns
528+
* @readonly
529+
* @type {Function}
530+
* @see {@link module:@stdlib/ndarray/last}
531+
*/
532+
setReadOnly( ns, 'last', require( './../last' ) );
533+
525534
/**
526535
* @name map
527536
* @memberof ns

0 commit comments

Comments
 (0)