mirror of
https://github.com/samber/lo.git
synced 2026-04-22 23:47:11 +08:00
fa095e4b4f
* fix(doc): fix go playground demo URL * fix(doc): add more go playground demo URL
675 B
675 B
name, slug, sourceRef, category, subCategory, signatures, playUrl, variantHelpers, similarHelpers, position
| name | slug | sourceRef | category | subCategory | signatures | playUrl | variantHelpers | similarHelpers | position | ||
|---|---|---|---|---|---|---|---|---|---|---|---|
| TrimSuffix | trimsuffix | it/seq.go#L778 | it | string |
|
https://go.dev/play/p/s9nwy9helEi |
|
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]