mirror of
https://github.com/samber/lo.git
synced 2026-04-23 07:49:50 +08:00
632 B
632 B
name, slug, sourceRef, category, subCategory, signatures, variantHelpers, similarHelpers, position
| name | slug | sourceRef | category | subCategory | signatures | variantHelpers | similarHelpers | position | ||
|---|---|---|---|---|---|---|---|---|---|---|
| TrimSuffix | trimsuffix | it/seq.go#L778 | it | string |
|
|
266 |
TrimSuffix removes all the trailing suffix from the collection.
collection := func(yield func(int) bool) {
yield(1)
yield(2)
yield(3)
yield(4)
yield(3)
yield(4)
}
trimmed := it.TrimSuffix(collection, []int{3, 4})
var result []int
for item := range trimmed {
result = append(result, item)
}
// result contains [1, 2]