mirror of
https://github.com/samber/lo.git
synced 2026-04-22 23:47:11 +08:00
481 B
481 B
name, slug, sourceRef, category, subCategory, playUrl, variantHelpers, similarHelpers, position, signatures
| name | slug | sourceRef | category | subCategory | playUrl | variantHelpers | similarHelpers | position | signatures | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Flatten | flatten | slice.go#L266 | core | slice | https://go.dev/play/p/rbp9ORaMpjw |
|
|
160 |
|
Flattens a slice of slices by one level.
flat := lo.Flatten([][]int{{0, 1}, {2, 3, 4, 5}})
// []int{0, 1, 2, 3, 4, 5}