Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -958,6 +958,21 @@ value := lo.ValueOr[string, int](map[string]int{"foo": 1, "bar": 2}, "baz", 42)
// 42
```

[[play](https://go.dev/play/p/pvoEPxdiL8m)]

### _GetOrSet_

Returns value of the given key or set the fallback value if not present

```go
value := lo.GetOrSet[string, int](map[string]int{"foo": 1, "bar": 2}, "foo", 42)
// 1

value := lo.GetOrSet[string, int](map[string]int{"foo": 1, "bar": 2}, "baz", 42)
// 42
// and the original map becomes map[string]int{"foo": 1, "bar": 2, "baz": 42}
```

[[play](https://go.dev/play/p/bAq9mHErB4V)]

### PickBy
Expand Down
10 changes: 10 additions & 0 deletions map.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ func ValueOr[K comparable, V any](in map[K]V, key K, fallback V) V {
return fallback
}

// GetOrSet returns value of the given key or set the fallback value if not present
// Play: https://go.dev/play/p/pvoEPxdiL8m
func GetOrSet[K comparable, V any](in map[K]V, key K, fallback V) V {
if v, ok := in[key]; ok {
return v
}
in[key] = fallback
return fallback
}

// PickBy returns same map type filtered by given predicate.
// Play: https://go.dev/play/p/kdg8GR_QMmf
func PickBy[K comparable, V any](in map[K]V, predicate func(key K, value V) bool) map[K]V {
Expand Down
10 changes: 10 additions & 0 deletions map_example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ func ExampleValueOr() {
// Output: 1 42
}

func ExampleGetOrSet() {
kv := map[string]int{"foo": 1}

result1 := GetOrSet(kv, "foo", 1)
result2 := GetOrSet(kv, "bar", 2)

fmt.Printf("%v %v %v", result1, result2, kv)
// Output: 1 2 map[bar:2 foo:1]
}

func ExamplePickBy() {
kv := map[string]int{"foo": 1, "bar": 2, "baz": 3}

Expand Down
27 changes: 21 additions & 6 deletions map_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,21 @@ func TestValueOr(t *testing.T) {
is.Equal(r2, 1)
}

func TestGetOrSet(t *testing.T) {
t.Parallel()
is := assert.New(t)

kv := map[string]int{"foo": 1}

r1 := GetOrSet(kv, "foo", 2)
is.Equal(r1, 1)

r2 := GetOrSet(kv, "bar", 2)
is.Equal(r2, 2)

is.Equal(kv, map[string]int{"foo": 1, "bar": 2})
}

func TestPickBy(t *testing.T) {
t.Parallel()
is := assert.New(t)
Expand Down Expand Up @@ -290,18 +305,18 @@ func TestMapEntries(t *testing.T) {
}, map[string]any{"b": 5})
}

//// OverlappingKeys
//// because using range over map, the order is not guaranteed
//// this test is not deterministic
//{
// // OverlappingKeys
// // because using range over map, the order is not guaranteed
// // this test is not deterministic
// {
// mapEntriesTest(t, map[string]any{"foo": 1, "foo2": 2, "Foo": 2, "Foo2": "2", "bar": "2", "ccc": true}, func(k string, v any) (string, any) {
// return string(k[0]), v
// }, map[string]any{"F": "2", "b": "2", "c": true, "f": 2})
// mapEntriesTest(t, map[string]string{"foo": "1", "foo2": "2", "Foo": "2", "Foo2": "2", "bar": "2", "ccc": "true"}, func(k string, v string) (string, string) {
// return v, k
// }, map[string]string{"1": "foo", "2": "bar", "true": "ccc"})
//}
//NormalMappers
// }
// NormalMappers
{
mapEntriesTest(t, map[string]string{"foo": "1", "foo2": "2", "Foo": "2", "Foo2": "2", "bar": "2", "ccc": "true"}, func(k string, v string) (string, string) {
return k, k + v
Expand Down