mirror of
https://github.com/samber/lo.git
synced 2026-04-22 15:37:14 +08:00
fa095e4b4f
* fix(doc): fix go playground demo URL * fix(doc): add more go playground demo URL
536 B
536 B
name, slug, sourceRef, category, subCategory, playUrl, variantHelpers, similarHelpers, position, signatures
| name | slug | sourceRef | category | subCategory | playUrl | variantHelpers | similarHelpers | position | signatures | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| WithoutEmpty | withoutempty | intersect.go#L218 | core | intersect | https://go.dev/play/p/iZvYJWuniJm |
|
|
130 |
|
Returns a slice excluding zero values. Deprecated: use Compact instead.
lo.WithoutEmpty([]int{0, 2, 10})
// []int{2, 10}