Files
lo/docs/data/it-drop.md
T
Samuel Berthe fa095e4b4f fix(doc): fix go playground demo URL (#832)
* fix(doc): fix go playground demo URL

* fix(doc): add more go playground demo URL
2026-03-06 00:09:59 +01:00

652 B

name, slug, sourceRef, category, subCategory, signatures, playUrl, variantHelpers, similarHelpers, position
name slug sourceRef category subCategory signatures playUrl variantHelpers similarHelpers position
Drop drop it/seq.go#L498 it sequence
func Drop[T any, I ~func(func(T) bool)](collection I, n int) I
https://go.dev/play/p/O1J1-uWc3z9
it#sequence#drop
core#slice#drop
it#sequence#droplast
100

Drops n elements from the beginning of a sequence.

Examples:

seq := func(yield func(int) bool) {
    _ = yield(1)
    _ = yield(2)
    _ = yield(3)
    _ = yield(4)
    _ = yield(5)
}
dropped := it.Drop(seq, 2)
var result []int
for v := range dropped {
    result = append(result, v)
}
// result contains 3, 4, 5