Skip to content

Commit 1cb55aa

Browse files
committed
Auto-generated commit
1 parent 18d36d4 commit 1cb55aa

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+
- [`364e294`](https://github.com/stdlib-js/stdlib/commit/364e294fbd4ebd149d86b8f7996da4b00b6c6b3b) - add `nulls` to namespace
14+
- [`f1ab973`](https://github.com/stdlib-js/stdlib/commit/f1ab9738a81b32e0bcd49a2661b0023bbc4ca84f) - add `nans` to namespace
1315
- [`751b29f`](https://github.com/stdlib-js/stdlib/commit/751b29f4675e211127d6b24211d9bf655bcbac2c) - add `ndarray/base/nans` [(#11144)](https://github.com/stdlib-js/stdlib/pull/11144)
1416
- [`7d2950a`](https://github.com/stdlib-js/stdlib/commit/7d2950a6283b33a6020a6d7622e1c31228876fdf) - add `ndarray/base/nulls` [(#11145)](https://github.com/stdlib-js/stdlib/pull/11145)
1517
- [`569131f`](https://github.com/stdlib-js/stdlib/commit/569131f478009cf40b7c3810ac6b1a084634283d) - update `ndarray/base` TypeScript declarations [(#11149)](https://github.com/stdlib-js/stdlib/pull/11149)
@@ -813,6 +815,8 @@ A total of 44 issues were closed in this release:
813815

814816
<details>
815817

818+
- [`364e294`](https://github.com/stdlib-js/stdlib/commit/364e294fbd4ebd149d86b8f7996da4b00b6c6b3b) - **feat:** add `nulls` to namespace _(by Athan Reines)_
819+
- [`f1ab973`](https://github.com/stdlib-js/stdlib/commit/f1ab9738a81b32e0bcd49a2661b0023bbc4ca84f) - **feat:** add `nans` to namespace _(by Athan Reines)_
816820
- [`751b29f`](https://github.com/stdlib-js/stdlib/commit/751b29f4675e211127d6b24211d9bf655bcbac2c) - **feat:** add `ndarray/base/nans` [(#11144)](https://github.com/stdlib-js/stdlib/pull/11144) _(by Muhammad Haris, Athan Reines)_
817821
- [`7d2950a`](https://github.com/stdlib-js/stdlib/commit/7d2950a6283b33a6020a6d7622e1c31228876fdf) - **feat:** add `ndarray/base/nulls` [(#11145)](https://github.com/stdlib-js/stdlib/pull/11145) _(by Muhammad Haris, Athan Reines)_
818822
- [`569131f`](https://github.com/stdlib-js/stdlib/commit/569131f478009cf40b7c3810ac6b1a084634283d) - **feat:** update `ndarray/base` TypeScript declarations [(#11149)](https://github.com/stdlib-js/stdlib/pull/11149) _(by stdlib-bot)_

base/lib/index.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -805,6 +805,15 @@ setReadOnly( ns, 'minViewBufferIndex', require( './../../base/min-view-buffer-in
805805
*/
806806
setReadOnly( ns, 'minmaxViewBufferIndex', require( './../../base/minmax-view-buffer-index' ) );
807807

808+
/**
809+
* @name nans
810+
* @memberof ns
811+
* @readonly
812+
* @type {Function}
813+
* @see {@link module:@stdlib/ndarray/base/nans}
814+
*/
815+
setReadOnly( ns, 'nans', require( './../../base/nans' ) );
816+
808817
/**
809818
* @name ndarraylike2ndarray
810819
* @memberof ns
@@ -931,6 +940,15 @@ setReadOnly( ns, 'nullaryStrided1dDispatchFactory', require( './../../base/nulla
931940
*/
932941
setReadOnly( ns, 'nullaryBlockSize', require( './../../base/nullary-tiling-block-size' ) );
933942

943+
/**
944+
* @name nulls
945+
* @memberof ns
946+
* @readonly
947+
* @type {Function}
948+
* @see {@link module:@stdlib/ndarray/base/nulls}
949+
*/
950+
setReadOnly( ns, 'nulls', require( './../../base/nulls' ) );
951+
934952
/**
935953
* @name numel
936954
* @memberof ns

0 commit comments

Comments
 (0)