mirror of
https://github.com/samber/lo.git
synced 2026-04-22 23:47:11 +08:00
552 B
552 B
name, slug, sourceRef, category, subCategory, playUrl, variantHelpers, similarHelpers, position, signatures
| name | slug | sourceRef | category | subCategory | playUrl | variantHelpers | similarHelpers | position | signatures | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Keyify | keyify | slice.go#L429 | core | slice | https://go.dev/play/p/RYhhM_csqIG |
|
|
270 |
|
Returns a set-like map where each unique element of the slice is a key.
set := lo.Keyify([]int{1, 1, 2, 3, 4})
// map[int]struct{}{1: {}, 2: {}, 3: {}, 4: {}}