Skip to content

Commit d1cbda3

Browse files
committed
Auto-generated commit
1 parent 6e007cb commit d1cbda3

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

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+
- [`6117db9`](https://github.com/stdlib-js/stdlib/commit/6117db9a02e613a5a5dc02e2d948c1d900c93739) - add `hconcat` to namespace
1314
- [`50e53a1`](https://github.com/stdlib-js/stdlib/commit/50e53a18d36e39662e7bf8f69e720f5df5cc9df1) - add `ndarray/hconcat` [(#11583)](https://github.com/stdlib-js/stdlib/pull/11583)
1415
- [`aaa6e06`](https://github.com/stdlib-js/stdlib/commit/aaa6e06422092ba41c57fc3dfb2a8b833edd0163) - add `vconcat` to namespace
1516
- [`560eaba`](https://github.com/stdlib-js/stdlib/commit/560eaba74ab49beef39d2cc8c4cdda08d5c1060f) - add `ndarray/vconcat` [(#11581)](https://github.com/stdlib-js/stdlib/pull/11581)
@@ -859,6 +860,7 @@ A total of 49 issues were closed in this release:
859860

860861
<details>
861862

863+
- [`6117db9`](https://github.com/stdlib-js/stdlib/commit/6117db9a02e613a5a5dc02e2d948c1d900c93739) - **feat:** add `hconcat` to namespace _(by Athan Reines)_
862864
- [`50e53a1`](https://github.com/stdlib-js/stdlib/commit/50e53a18d36e39662e7bf8f69e720f5df5cc9df1) - **feat:** add `ndarray/hconcat` [(#11583)](https://github.com/stdlib-js/stdlib/pull/11583) _(by Muhammad Haris)_
863865
- [`aaa6e06`](https://github.com/stdlib-js/stdlib/commit/aaa6e06422092ba41c57fc3dfb2a8b833edd0163) - **feat:** add `vconcat` to namespace _(by Athan Reines)_
864866
- [`560eaba`](https://github.com/stdlib-js/stdlib/commit/560eaba74ab49beef39d2cc8c4cdda08d5c1060f) - **feat:** add `ndarray/vconcat` [(#11581)](https://github.com/stdlib-js/stdlib/pull/11581) _(by Muhammad Haris)_

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,15 @@ setReadOnly( ns, 'scalar2ndarray', require( './../from-scalar' ) );
450450
*/
451451
setReadOnly( ns, 'scalar2ndarrayLike', require( './../from-scalar-like' ) );
452452

453+
/**
454+
* @name hconcat
455+
* @memberof ns
456+
* @readonly
457+
* @type {Namespace}
458+
* @see {@link module:@stdlib/ndarray/hconcat}
459+
*/
460+
setReadOnly( ns, 'hconcat', require( './../hconcat' ) );
461+
453462
/**
454463
* @name includes
455464
* @memberof ns

0 commit comments

Comments
 (0)