Back to Lo

Core Frompairs

docs/data/core-frompairs.md

1.53.0179 B
Original Source

Transforms a slice of key/value pairs into a map. Alias of FromEntries.

go
m := lo.FromPairs([]lo.Entry[string, int]{{Key: "foo", Value: 1}})
// map[string]int{"foo": 1}