mirror of
https://github.com/samber/lo.git
synced 2026-04-22 23:47:11 +08:00
517 B
517 B
name, slug, sourceRef, category, subCategory, playUrl, variantHelpers, similarHelpers, position, signatures
| name | slug | sourceRef | category | subCategory | playUrl | variantHelpers | similarHelpers | position | signatures | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FindKey | findkey | find.go#L128 | core | find | https://go.dev/play/p/Bg0w1VDPYXx |
|
|
80 |
|
Returns the first key whose value equals the provided value.
k, ok := lo.FindKey(map[string]int{"foo":1, "bar":2, "baz":3}, 2)
// "bar", true