Skip to content

Commit 543b750

Browse files
committed
Auto-generated commit
1 parent e7a7b71 commit 543b750

File tree

2 files changed

+36
-2
lines changed

2 files changed

+36
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-11-05)
7+
## Unreleased (2025-11-07)
88

99
<section class="features">
1010

@@ -37,6 +37,7 @@
3737

3838
<details>
3939

40+
- [`5f5bb2d`](https://github.com/stdlib-js/stdlib/commit/5f5bb2d4277a24000b57fb07bc28d821500cd7e8) - **docs:** update namespace table of contents [(#8425)](https://github.com/stdlib-js/stdlib/pull/8425) _(by stdlib-bot, Athan Reines)_
4041
- [`df3a5eb`](https://github.com/stdlib-js/stdlib/commit/df3a5eb8d0d35e57479253130e6aeb947cbd3b74) - **refactor:** use base array utility _(by Athan Reines)_
4142
- [`044d67b`](https://github.com/stdlib-js/stdlib/commit/044d67bba8e2166313bf5f7ec59fa0fee3a3a54c) - **docs:** fix examples [(#8162)](https://github.com/stdlib-js/stdlib/pull/8162) _(by stdlib-bot)_
4243
- [`b7c2031`](https://github.com/stdlib-js/stdlib/commit/b7c20312491bdcf54ffc681e5fe489b9ba3d059c) - **docs:** clean-up TSDoc declaration comments _(by Philipp Burckhardt)_

README.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,19 @@ var keys = objectKeys( ns );
8484
- <span class="signature">[`iterConcat( iter0, ...iterator )`][@stdlib/iter/concat]</span><span class="delimiter">: </span><span class="description">create an iterator which iterates over the values of two or more iterators.</span>
8585
- <span class="signature">[`iterConstant( value[, options] )`][@stdlib/iter/constant]</span><span class="delimiter">: </span><span class="description">create an iterator which always returns the same value.</span>
8686
- <span class="signature">[`iterCounter( iterator )`][@stdlib/iter/counter]</span><span class="delimiter">: </span><span class="description">create an iterator which iteratively computes the number of iterated values.</span>
87+
- <span class="signature">[`iterCuAnyBy( iterator, predicate[, thisArg] )`][@stdlib/iter/cuany-by]</span><span class="delimiter">: </span><span class="description">create an iterator which cumulatively tests whether at least one iterated value passes a test implemented by a predicate function.</span>
88+
- <span class="signature">[`iterCuAny( iterator )`][@stdlib/iter/cuany]</span><span class="delimiter">: </span><span class="description">create an iterator which cumulatively tests whether at least one iterated value is truthy.</span>
89+
- <span class="signature">[`iterCuEveryBy( iterator, predicate[, thisArg] )`][@stdlib/iter/cuevery-by]</span><span class="delimiter">: </span><span class="description">create an iterator which cumulatively tests whether every iterated value passes a test implemented by a predicate function.</span>
90+
- <span class="signature">[`iterCuEvery( iterator )`][@stdlib/iter/cuevery]</span><span class="delimiter">: </span><span class="description">create an iterator which cumulatively tests whether every iterated value is truthy.</span>
91+
- <span class="signature">[`iterCuNoneBy( iterator, predicate[, thisArg] )`][@stdlib/iter/cunone-by]</span><span class="delimiter">: </span><span class="description">create an iterator which cumulatively tests whether every iterated value fails a test implemented by a predicate function.</span>
92+
- <span class="signature">[`iterCuNone( iterator )`][@stdlib/iter/cunone]</span><span class="delimiter">: </span><span class="description">create an iterator which cumulatively tests whether every iterated value is falsy.</span>
93+
- <span class="signature">[`iterCuSomeBy( iterator, n, predicate[, thisArg] )`][@stdlib/iter/cusome-by]</span><span class="delimiter">: </span><span class="description">create an iterator which cumulatively tests whether at least `n` iterated values pass a test implemented by a predicate function.</span>
94+
- <span class="signature">[`iterCuSome( iterator, n )`][@stdlib/iter/cusome]</span><span class="delimiter">: </span><span class="description">create an iterator which cumulatively tests whether at least `n` iterated values are truthy.</span>
8795
- <span class="signature">[`iterDatespace( start, stop[, N][, options] )`][@stdlib/iter/datespace]</span><span class="delimiter">: </span><span class="description">create an iterator which returns evenly spaced dates over a specified interval.</span>
8896
- <span class="signature">[`iterDedupeBy( iterator, [limit,] fcn )`][@stdlib/iter/dedupe-by]</span><span class="delimiter">: </span><span class="description">create an iterator which removes consecutive values that resolve to the same value according to a provided function.</span>
8997
- <span class="signature">[`iterDedupe( iterator[, limit] )`][@stdlib/iter/dedupe]</span><span class="delimiter">: </span><span class="description">create an iterator which removes consecutive duplicated values.</span>
98+
- <span class="signature">[`iterDoUntilEach( iterator, predicate, fcn[, thisArg] )`][@stdlib/iter/do-until-each]</span><span class="delimiter">: </span><span class="description">create an iterator which, while a test condition is false, invokes a function for each iterated value before returning the iterated value.</span>
99+
- <span class="signature">[`iterDoWhileEach( iterator, predicate, fcn[, thisArg] )`][@stdlib/iter/do-while-each]</span><span class="delimiter">: </span><span class="description">create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value.</span>
90100
- <span class="signature">[`iterEmpty()`][@stdlib/iter/empty]</span><span class="delimiter">: </span><span class="description">create an empty iterator.</span>
91101
- <span class="signature">[`iterEveryBy( iterator, predicate[, thisArg] )`][@stdlib/iter/every-by]</span><span class="delimiter">: </span><span class="description">test whether every iterated value passes a test implemented by a predicate function.</span>
92102
- <span class="signature">[`iterEvery( iterator )`][@stdlib/iter/every]</span><span class="delimiter">: </span><span class="description">test whether all iterated values are truthy.</span>
@@ -131,7 +141,8 @@ var keys = objectKeys( ns );
131141
- <span class="signature">[`iterUnique( iterator )`][@stdlib/iter/unique]</span><span class="delimiter">: </span><span class="description">create an iterator which returns unique values.</span>
132142
- <span class="signature">[`iterUnitspace( start[, stop] )`][@stdlib/iter/unitspace]</span><span class="delimiter">: </span><span class="description">create an iterator which returns numbers incremented by `1`.</span>
133143
- <span class="signature">[`iterUnshift( iterator, ...items )`][@stdlib/iter/unshift]</span><span class="delimiter">: </span><span class="description">create an iterator which prepends values to the beginning of a provided iterator.</span>
134-
- <span class="signature">[`whileEach( iterator, predicate, fcn[, thisArg] )`][@stdlib/iter/while-each]</span><span class="delimiter">: </span><span class="description">create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value.</span>
144+
- <span class="signature">[`iterUntilEach( iterator, predicate, fcn[, thisArg] )`][@stdlib/iter/until-each]</span><span class="delimiter">: </span><span class="description">create an iterator which, while a test condition is false, invokes a function for each iterated value before returning the iterated value.</span>
145+
- <span class="signature">[`iterWhileEach( iterator, predicate, fcn[, thisArg] )`][@stdlib/iter/while-each]</span><span class="delimiter">: </span><span class="description">create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value.</span>
135146

136147
</div>
137148

@@ -312,12 +323,32 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
312323

313324
[@stdlib/iter/counter]: https://github.com/stdlib-js/iter/tree/main/counter
314325

326+
[@stdlib/iter/cuany-by]: https://github.com/stdlib-js/iter/tree/main/cuany-by
327+
328+
[@stdlib/iter/cuany]: https://github.com/stdlib-js/iter/tree/main/cuany
329+
330+
[@stdlib/iter/cuevery-by]: https://github.com/stdlib-js/iter/tree/main/cuevery-by
331+
332+
[@stdlib/iter/cuevery]: https://github.com/stdlib-js/iter/tree/main/cuevery
333+
334+
[@stdlib/iter/cunone-by]: https://github.com/stdlib-js/iter/tree/main/cunone-by
335+
336+
[@stdlib/iter/cunone]: https://github.com/stdlib-js/iter/tree/main/cunone
337+
338+
[@stdlib/iter/cusome-by]: https://github.com/stdlib-js/iter/tree/main/cusome-by
339+
340+
[@stdlib/iter/cusome]: https://github.com/stdlib-js/iter/tree/main/cusome
341+
315342
[@stdlib/iter/datespace]: https://github.com/stdlib-js/iter/tree/main/datespace
316343

317344
[@stdlib/iter/dedupe-by]: https://github.com/stdlib-js/iter/tree/main/dedupe-by
318345

319346
[@stdlib/iter/dedupe]: https://github.com/stdlib-js/iter/tree/main/dedupe
320347

348+
[@stdlib/iter/do-until-each]: https://github.com/stdlib-js/iter/tree/main/do-until-each
349+
350+
[@stdlib/iter/do-while-each]: https://github.com/stdlib-js/iter/tree/main/do-while-each
351+
321352
[@stdlib/iter/empty]: https://github.com/stdlib-js/iter/tree/main/empty
322353

323354
[@stdlib/iter/every-by]: https://github.com/stdlib-js/iter/tree/main/every-by
@@ -406,6 +437,8 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
406437

407438
[@stdlib/iter/unshift]: https://github.com/stdlib-js/iter/tree/main/unshift
408439

440+
[@stdlib/iter/until-each]: https://github.com/stdlib-js/iter/tree/main/until-each
441+
409442
[@stdlib/iter/while-each]: https://github.com/stdlib-js/iter/tree/main/while-each
410443

411444
<!-- </toc-links> -->

0 commit comments

Comments
 (0)