maps

package
v0.4.51 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 14, 2024 License: Apache-2.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func DeepCopy

func DeepCopy[M ~map[K]V, K comparable, V interfaces.DeepCopier[V]](m M) M

DeepCopy returns a deep copy of M.

func DeepEqual added in v0.3.54

func DeepEqual[M ~map[K]V, K comparable, V interfaces.Equaler[V]](a, b M) bool

DeepEqual compares two maps for equality using the Equals() method defined on the values.

func Filter added in v0.3.59

func Filter[M ~map[K]V, K comparable, V any](m M, predicate func(K, V) bool) M

Filter returns a copy of the provided map with any keys for which predicate returns false removed.

func FilterKeys added in v0.3.53

func FilterKeys[M ~map[K]V, K comparable, V any](m M, predicate func(K) bool) M

FilterKeys returns a copy of the provided map with any keys for which predicate returns false removed.

func Map

func Map[M ~map[KA]VA, KA comparable, VA any, KB comparable, VB any](m M, keyFunc func(KA) KB, valueFunc func(VA) VB) map[KB]VB

Map maps the keys and values of m into keyFunc(k) and valueFunc(v), respectively. Duplicate keys are overwritten.

func MapKeys

func MapKeys[M ~map[KA]V, KA comparable, KB comparable, V any](m M, keyFunc func(KA) KB) map[KB]V

MapKeys maps the keys of m into keyFunc(k). Duplicate keys are overwritten.

func MapValues

func MapValues[M ~map[K]VA, K comparable, VA any, VB any](m M, valueFunc func(VA) VB) map[K]VB

MapValues maps the values of m into valueFunc(v).

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL