Skip to content

Commit 2eb00bf

Browse files
committed
Auto-generated commit
1 parent 6b8ad67 commit 2eb00bf

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-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+
- [`80e9b07`](https://github.com/stdlib-js/stdlib/commit/80e9b07afb5318780a47d362a34e4ee41b39cd81) - add `trues`, `falses`, and `tile` to namespace
1314
- [`909028f`](https://github.com/stdlib-js/stdlib/commit/909028f730cd82c58cfbdb635ebc602e907ba956) - add `ndarray/base/trues` [(#11528)](https://github.com/stdlib-js/stdlib/pull/11528)
1415
- [`85543bf`](https://github.com/stdlib-js/stdlib/commit/85543bf5fd13e8014bfa2b81ce950f5172d4d4b0) - add `ndarray/base/falses` [(#11529)](https://github.com/stdlib-js/stdlib/pull/11529)
1516
- [`a12ba0a`](https://github.com/stdlib-js/stdlib/commit/a12ba0a26b7e11e99b04627e57a1dd2f21ca4ad0) - add `ndarray/base/tile` [(#11499)](https://github.com/stdlib-js/stdlib/pull/11499)
@@ -847,6 +848,7 @@ A total of 49 issues were closed in this release:
847848

848849
<details>
849850

851+
- [`80e9b07`](https://github.com/stdlib-js/stdlib/commit/80e9b07afb5318780a47d362a34e4ee41b39cd81) - **feat:** add `trues`, `falses`, and `tile` to namespace _(by Athan Reines)_
850852
- [`909028f`](https://github.com/stdlib-js/stdlib/commit/909028f730cd82c58cfbdb635ebc602e907ba956) - **feat:** add `ndarray/base/trues` [(#11528)](https://github.com/stdlib-js/stdlib/pull/11528) _(by Muhammad Haris)_
851853
- [`85543bf`](https://github.com/stdlib-js/stdlib/commit/85543bf5fd13e8014bfa2b81ce950f5172d4d4b0) - **feat:** add `ndarray/base/falses` [(#11529)](https://github.com/stdlib-js/stdlib/pull/11529) _(by Muhammad Haris)_
852854
- [`a12ba0a`](https://github.com/stdlib-js/stdlib/commit/a12ba0a26b7e11e99b04627e57a1dd2f21ca4ad0) - **feat:** add `ndarray/base/tile` [(#11499)](https://github.com/stdlib-js/stdlib/pull/11499) _(by Muhammad Haris, Athan Reines)_

base/lib/index.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,15 @@ setReadOnly( ns, 'everyBy', require( './../../base/every-by' ) );
544544
*/
545545
setReadOnly( ns, 'expandDimensions', require( './../../base/expand-dimensions' ) );
546546

547+
/**
548+
* @name falses
549+
* @memberof ns
550+
* @readonly
551+
* @type {Function}
552+
* @see {@link module:@stdlib/ndarray/base/falses}
553+
*/
554+
setReadOnly( ns, 'falses', require( './../../base/falses' ) );
555+
547556
/**
548557
* @name fill
549558
* @memberof ns
@@ -1372,6 +1381,15 @@ setReadOnly( ns, 'ternaryOutputDataType', require( './../../base/ternary-output-
13721381
*/
13731382
setReadOnly( ns, 'ternaryBlockSize', require( './../../base/ternary-tiling-block-size' ) );
13741383

1384+
/**
1385+
* @name tile
1386+
* @memberof ns
1387+
* @readonly
1388+
* @type {Function}
1389+
* @see {@link module:@stdlib/ndarray/base/tile}
1390+
*/
1391+
setReadOnly( ns, 'tile', require( './../../base/tile' ) );
1392+
13751393
/**
13761394
* @name blockSize
13771395
* @memberof ns
@@ -1471,6 +1489,15 @@ setReadOnly( ns, 'toUniqueNormalizedIndices', require( './../../base/to-unique-n
14711489
*/
14721490
setReadOnly( ns, 'transpose', require( './../../base/transpose' ) );
14731491

1492+
/**
1493+
* @name trues
1494+
* @memberof ns
1495+
* @readonly
1496+
* @type {Function}
1497+
* @see {@link module:@stdlib/ndarray/base/trues}
1498+
*/
1499+
setReadOnly( ns, 'trues', require( './../../base/trues' ) );
1500+
14741501
/**
14751502
* @name unary
14761503
* @memberof ns

0 commit comments

Comments
 (0)