multi: remove x/exp/maps dependency

This commit is contained in:
jike
2025-03-19 12:28:34 +00:00
committed by jike2021
parent 67d2eac437
commit e72caf7b45
7 changed files with 22 additions and 13 deletions

View File

@@ -2,13 +2,13 @@ package fn
import (
"fmt"
"golang.org/x/exp/maps"
"maps"
"slices"
)
// KeySet converts a map into a Set containing the keys of the map.
func KeySet[K comparable, V any](m map[K]V) Set[K] {
return NewSet(maps.Keys(m)...)
return NewSet(slices.Collect(maps.Keys(m))...)
}
// NewSubMapIntersect returns a sub-map of `m` containing only the keys found in