Skip to content

Commit 378d7e1

Browse files
committed
Auto-generated commit
1 parent 8db6406 commit 378d7e1

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1316,6 +1316,7 @@ A total of 13 people contributed to this release. Thank you to the following con
13161316

13171317
<details>
13181318

1319+
- [`9d448eb`](https://github.com/stdlib-js/stdlib/commit/9d448eb903bf7121e982f913209f92b1eeaf49e2) - **docs:** update namespace table of contents [(#6276)](https://github.com/stdlib-js/stdlib/pull/6276) _(by stdlib-bot)_
13191320
- [`a612b3d`](https://github.com/stdlib-js/stdlib/commit/a612b3dee234a1218596793d2d3be311154eb799) - **feat:** add `fillBy` to namespace _(by Athan Reines)_
13201321
- [`ab96811`](https://github.com/stdlib-js/stdlib/commit/ab968115af31dba0958736eeb1fc1fd73903c16c) - **feat:** add `array/base/fill-by` _(by Athan Reines)_
13211322
- [`b41b329`](https://github.com/stdlib-js/stdlib/commit/b41b329153af54747648343fe20907feecac2639) - **test:** add tests _(by Athan Reines)_

base/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ The namespace exports the following:
109109
- <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>
110110
- <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>
111111
- <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>
112+
- <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>
112113
- <span class="signature">[`fill( x, value, start, end )`][@stdlib/array/base/fill]</span><span class="delimiter">: </span><span class="description">fill all elements within a portion of an array with a specified value.</span>
113114
- <span class="signature">[`filledBy( len, clbk[, thisArg] )`][@stdlib/array/base/filled-by]</span><span class="delimiter">: </span><span class="description">create a filled "generic" array according to a provided callback function.</span>
114115
- <span class="signature">[`filled( value, len )`][@stdlib/array/base/filled]</span><span class="delimiter">: </span><span class="description">create a filled "generic" array.</span>
@@ -431,6 +432,8 @@ var squared = ns.map2d( arr2d, [ 2, 3 ], randu );
431432

432433
[@stdlib/array/base/fancy-slice]: https://github.com/stdlib-js/array/tree/main/base/fancy-slice
433434

435+
[@stdlib/array/base/fill-by]: https://github.com/stdlib-js/array/tree/main/base/fill-by
436+
434437
[@stdlib/array/base/fill]: https://github.com/stdlib-js/array/tree/main/base/fill
435438

436439
[@stdlib/array/base/filled-by]: https://github.com/stdlib-js/array/tree/main/base/filled-by

0 commit comments

Comments
 (0)