Documentation
¶
Overview ¶
Package mapx provides generic helpers for creating, cloning, merging, and querying maps and set-maps.
Index ¶
- func CloneMapStringSlice(src map[string][]string) map[string][]string
- func DeepCloneMapAny(src map[string]any) map[string]any
- func DeepMergeMapAny(base, override map[string]any) map[string]any
- func MapIntersectionUnique[T comparable](left, right []T) []T
- func MapSetFromSlice[T comparable](items []T) map[T]struct{}
- func PruneMapZeroAny(src map[string]any) map[string]any
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CloneMapStringSlice ¶
CloneMapStringSlice clones a map[string][]string, skipping blank keys
func DeepCloneMapAny ¶
DeepCloneMapAny creates a deep copy of a map[string]any
func DeepMergeMapAny ¶
DeepMergeMapAny deep-merges override onto base, recursing into nested map[string]any values
func MapIntersectionUnique ¶
func MapIntersectionUnique[T comparable](left, right []T) []T
MapIntersectionUnique returns items present in both slices, in right-hand order, with duplicates removed
func MapSetFromSlice ¶
func MapSetFromSlice[T comparable](items []T) map[T]struct{}
MapSetFromSlice converts a slice into a set represented as map[T]struct{}
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.