mirror of
https://github.com/samber/lo.git
synced 2026-04-22 23:47:11 +08:00
526 B
526 B
name, slug, sourceRef, category, subCategory, signatures, playUrl, variantHelpers, similarHelpers, position
| name | slug | sourceRef | category | subCategory | signatures | playUrl | variantHelpers | similarHelpers | position | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| IsNotEmpty | isnotempty | it/type_manipulation.go#L59 | it | condition |
|
https://go.dev/play/p/G7hH3jJ0De5 |
|
|
10 |
Returns true if the collection is not empty, false otherwise.
result1 := it.IsNotEmpty(it.Range(1, 5))
// true
result2 := it.IsNotEmpty(it.Empty[int]())
// false