Documentation ¶
Index ¶
- func Clone[M ~map[K]V, K comparable, V any](m M) M
- func Contains[M1, M2 ~map[K]V, K comparable, V comparable](superset M1, subset M2) bool
- func Equal[M1, M2 ~map[K]V, K, V comparable](m1 M1, m2 M2) bool
- func EqualFunc[M1 ~map[K]V1, M2 ~map[K]V2, K comparable, V1, V2 any](m1 M1, m2 M2, eq func(V1, V2) bool) bool
- func Keys[M ~map[K]V, K comparable, V any](m M) []K
- func MergeCopy[M1 ~map[K]V, M2 ~map[K]V, K comparable, V any](base M1, override M2) M1
- func Values[M ~map[K]V, K comparable, V any](m M) []V
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Clone ¶
func Clone[M ~map[K]V, K comparable, V any](m M) M
Clone returns a copy of the map. The elements are copied using assignment, so this is a shallow clone.
func Contains ¶
func Contains[M1, M2 ~map[K]V, K comparable, V comparable](superset M1, subset M2) bool
Contains checks if all key-value pairs in 'subset' are present in 'superset'. It returns true only if every key in 'subset' exists in 'superset' and their corresponding values are equal.
func Equal ¶
func Equal[M1, M2 ~map[K]V, K, V comparable](m1 M1, m2 M2) bool
Equal reports whether two maps contain the same key/value pairs. Values are compared using ==.
func EqualFunc ¶
func EqualFunc[M1 ~map[K]V1, M2 ~map[K]V2, K comparable, V1, V2 any](m1 M1, m2 M2, eq func(V1, V2) bool) bool
EqualFunc is like Equal, but compares values using eq. Keys are still compared with ==.
func Keys ¶
func Keys[M ~map[K]V, K comparable, V any](m M) []K
Keys returns the keys of the map m. The keys will be in an indeterminate order.
func MergeCopy ¶
func MergeCopy[M1 ~map[K]V, M2 ~map[K]V, K comparable, V any](base M1, override M2) M1
MergeCopy creates a new map by merging all key/value pairs from base and override. When a key in override is already present in base, the value in base will be overwritten by the value associated with the key in override.
func Values ¶
func Values[M ~map[K]V, K comparable, V any](m M) []V
Values returns the values of the map m. The values will be in an indeterminate order.
Types ¶
This section is empty.