Files
lo/docs/data/it-takewhile.md
T
Yuliya c1d11cb658 Add iterator slice helpers (#791)
* add iterator slice helpers and channel dedup/tee

* note unbounded memory growth in Distinct; simplify Take

* avoid extra iteration in Take/TakeWhile/TakeFilter and precompute Sliding step

* avoid reallocations in Sliding overlap shift

* sliding uses ring buffer

* refactor Sliding and expand TestSliding

* Remove Tee; add TakeFilter variant, rewrite Sliding

* remove channel Distinct/DistinctBy

* TakeFilter/TakeFilterI for slice

* Revert "TakeFilter/TakeFilterI for slice"

This reverts commit 6d2fcdc07b.

* doc  add new helpers to llms.txt

---------

Co-authored-by: Samuel Berthe <dev@samuel-berthe.fr>
2026-02-23 20:27:51 +01:00

645 B

name, slug, sourceRef, category, subCategory, signatures, variantHelpers, similarHelpers, position
name slug sourceRef category subCategory signatures variantHelpers similarHelpers position
TakeWhile takewhile it/seq.go#L706 it sequence
func TakeWhile[T any, I ~func(func(T) bool)](collection I, predicate func(item T) bool) I
it#sequence#takewhile
core#slice#takewhile
120

Takes elements from the beginning of a sequence while the predicate returns true.

seq := func(yield func(int) bool) {
    yield(1)
    yield(2)
    yield(3)
    yield(4)
}
result := it.TakeWhile(seq, func(x int) bool {
    return x < 3
})
var out []int
for v := range result {
    out = append(out, v)
}
// out contains [1, 2]