mirror of
https://github.com/samber/lo.git
synced 2026-04-22 23:47:11 +08:00
536 B
536 B
name, slug, sourceRef, category, subCategory, playUrl, variantHelpers, similarHelpers, position, signatures
| name | slug | sourceRef | category | subCategory | playUrl | variantHelpers | similarHelpers | position | signatures | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Invert | invert | map.go#L222 | core | map | https://go.dev/play/p/rFQ4rak6iA1 |
|
|
150 |
|
Creates a map with keys and values swapped. If values are duplicated, later keys overwrite earlier ones.
lo.Invert(map[string]int{"a": 1, "b": 2})
// map[int]string{1: "a", 2: "b"}