Skip to content

Commit eb84140

Browse files
committed
Auto-generated commit
1 parent 1ba331f commit eb84140

3 files changed

Lines changed: 10 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ A total of 38 issues were closed in this release:
266266

267267
<details>
268268

269+
- [`5e93594`](https://github.com/stdlib-js/stdlib/commit/5e93594dd241e229cc3605b53dfa4290168526fc) - **docs:** update namespace table of contents [(#11214)](https://github.com/stdlib-js/stdlib/pull/11214) _(by stdlib-bot)_
269270
- [`33b4e79`](https://github.com/stdlib-js/stdlib/commit/33b4e79ad1e9cba8605ed44989d02f9a46b79663) - **feat:** add `nulls` to namespace _(by Athan Reines)_
270271
- [`419efe1`](https://github.com/stdlib-js/stdlib/commit/419efe14ee9dfc8224b419864f9314614f27786b) - **feat:** add `array/nulls` _(by Athan Reines)_
271272
- [`3186ff6`](https://github.com/stdlib-js/stdlib/commit/3186ff670bcc66153a58b94111f5688fa59170e7) - **docs:** fix alias _(by Athan Reines)_

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ Lastly, the namespace contains various other functions for dealing with arrays,
224224
- <span class="signature">[`nansLike( x[, dtype] )`][@stdlib/array/nans-like]</span><span class="delimiter">: </span><span class="description">create an array filled with NaNs and having the same length and data type as a provided array.</span>
225225
- <span class="signature">[`nans( length[, dtype] )`][@stdlib/array/nans]</span><span class="delimiter">: </span><span class="description">create an array filled with NaNs and having a specified length.</span>
226226
- <span class="signature">[`nextDataType( [dtype] )`][@stdlib/array/next-dtype]</span><span class="delimiter">: </span><span class="description">return the next larger array data type of the same kind.</span>
227+
- <span class="signature">[`nulls( length[, dtype] )`][@stdlib/array/nulls]</span><span class="delimiter">: </span><span class="description">create an array filled with nulls and having a specified length.</span>
227228
- <span class="signature">[`oneToLike( x[, dtype] )`][@stdlib/array/one-to-like]</span><span class="delimiter">: </span><span class="description">generate a linearly spaced numeric array whose elements increment by `1` starting from one and having the same length and data type as a provided input array.</span>
228229
- <span class="signature">[`oneTo( n[, dtype] )`][@stdlib/array/one-to]</span><span class="delimiter">: </span><span class="description">generate a linearly spaced numeric array whose elements increment by `1` starting from one.</span>
229230
- <span class="signature">[`onesLike( x[, dtype] )`][@stdlib/array/ones-like]</span><span class="delimiter">: </span><span class="description">create an array filled with ones and having the same length and data type as a provided array.</span>
@@ -434,6 +435,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
434435

435436
[@stdlib/array/next-dtype]: https://github.com/stdlib-js/array/tree/main/next-dtype
436437

438+
[@stdlib/array/nulls]: https://github.com/stdlib-js/array/tree/main/nulls
439+
437440
[@stdlib/array/one-to-like]: https://github.com/stdlib-js/array/tree/main/one-to-like
438441

439442
[@stdlib/array/one-to]: https://github.com/stdlib-js/array/tree/main/one-to

base/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ The namespace exports the following:
124124
- <span class="signature">[`everyByRight( x, predicate[, thisArg] )`][@stdlib/array/base/every-by-right]</span><span class="delimiter">: </span><span class="description">test whether all elements in an array pass a test implemented by a predicate function, iterating from right to left.</span>
125125
- <span class="signature">[`everyBy( x, predicate[, thisArg] )`][@stdlib/array/base/every-by]</span><span class="delimiter">: </span><span class="description">test whether all elements in an array pass a test implemented by a predicate function.</span>
126126
- <span class="signature">[`every( x )`][@stdlib/array/base/every]</span><span class="delimiter">: </span><span class="description">test whether all elements in an array are truthy.</span>
127+
- <span class="signature">[`falses( len )`][@stdlib/array/base/falses]</span><span class="delimiter">: </span><span class="description">create a "generic" array filled with `false` values.</span>
127128
- <span class="signature">[`fancySliceAssign( x, y, s, strict )`][@stdlib/array/base/fancy-slice-assign]</span><span class="delimiter">: </span><span class="description">assign element values from a broadcasted input array to corresponding elements in an output array.</span>
128129
- <span class="signature">[`fancySlice( x, s, strict )`][@stdlib/array/base/fancy-slice]</span><span class="delimiter">: </span><span class="description">return a shallow copy of a portion of an array.</span>
129130
- <span class="signature">[`fillBy( x, start, end, fcn[, thisArg] )`][@stdlib/array/base/fill-by]</span><span class="delimiter">: </span><span class="description">fill all elements within a portion of an array according to a callback function.</span>
@@ -260,6 +261,7 @@ The namespace exports the following:
260261
- <span class="signature">[`toDeduped( x, limit, equalNaNs )`][@stdlib/array/base/to-deduped]</span><span class="delimiter">: </span><span class="description">copy elements to a new "generic" array after removing consecutive duplicated values.</span>
261262
- <span class="signature">[`toInsertedAt( x, index, value )`][@stdlib/array/base/to-inserted-at]</span><span class="delimiter">: </span><span class="description">return a new array containing every element from an input array and with a provided value inserted at a specified index.</span>
262263
- <span class="signature">[`toReversed( x )`][@stdlib/array/base/to-reversed]</span><span class="delimiter">: </span><span class="description">return a new array with elements in reverse order.</span>
264+
- <span class="signature">[`trues( len )`][@stdlib/array/base/trues]</span><span class="delimiter">: </span><span class="description">create a "generic" array filled with `true` values.</span>
263265
- <span class="signature">[`unary2dBy( arrays, shape, fcn, clbk[, thisArg] )`][@stdlib/array/base/unary2d-by]</span><span class="delimiter">: </span><span class="description">apply a unary function to each element retrieved from a two-dimensional nested input array according to a callback function and assign results to elements in a two-dimensional nested output array.</span>
264266
- <span class="signature">[`unary2d( arrays, shape, fcn )`][@stdlib/array/base/unary2d]</span><span class="delimiter">: </span><span class="description">apply a unary callback to elements in a two-dimensional nested input array and assign results to elements in a two-dimensional nested output array.</span>
265267
- <span class="signature">[`unary3dBy( arrays, shape, fcn, clbk[, thisArg] )`][@stdlib/array/base/unary3d-by]</span><span class="delimiter">: </span><span class="description">apply a unary function to each element retrieved from a three-dimensional nested input array according to a callback function and assign results to elements in a three-dimensional nested output array.</span>
@@ -500,6 +502,8 @@ var squared = ns.map2d( arr2d, [ 2, 3 ], randu );
500502

501503
[@stdlib/array/base/every]: https://github.com/stdlib-js/array/tree/main/base/every
502504

505+
[@stdlib/array/base/falses]: https://github.com/stdlib-js/array/tree/main/base/falses
506+
503507
[@stdlib/array/base/fancy-slice-assign]: https://github.com/stdlib-js/array/tree/main/base/fancy-slice-assign
504508

505509
[@stdlib/array/base/fancy-slice]: https://github.com/stdlib-js/array/tree/main/base/fancy-slice
@@ -772,6 +776,8 @@ var squared = ns.map2d( arr2d, [ 2, 3 ], randu );
772776

773777
[@stdlib/array/base/to-reversed]: https://github.com/stdlib-js/array/tree/main/base/to-reversed
774778

779+
[@stdlib/array/base/trues]: https://github.com/stdlib-js/array/tree/main/base/trues
780+
775781
[@stdlib/array/base/unary2d-by]: https://github.com/stdlib-js/array/tree/main/base/unary2d-by
776782

777783
[@stdlib/array/base/unary2d]: https://github.com/stdlib-js/array/tree/main/base/unary2d

0 commit comments

Comments
 (0)