1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-11 08:12:26 +08:00

feat: add ValuesBy function

This commit is contained in:
dudaodong
2023-02-17 11:48:11 +08:00
parent e71cecefea
commit c2ae784f27
2 changed files with 39 additions and 0 deletions

View File

@@ -46,6 +46,18 @@ func KeysBy[K comparable, V any, T any](m map[K]V, mapper func(item K) T) []T {
return keys
}
// ValuesBy creates a slice whose element is the result of function mapper invoked by every map's value.
// todo:
func ValuesBy[K comparable, V any, T any](m map[K]V, mapper func(item V) T) []T {
keys := make([]T, 0, len(m))
for _, v := range m {
keys = append(keys, mapper(v))
}
return keys
}
// Merge maps, next key will overwrite previous key.
// Play: https://go.dev/play/p/H95LENF1uB-
func Merge[K comparable, V any](maps ...map[K]V) map[K]V {