maps

package
v0.3.0-a Latest Latest
Warning

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

Go to latest
Published: Jun 24, 2022 License: MIT Imports: 0 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Clone

func Clone[K comparable, V any](source map[K]V) map[K]V

Clone copy a map entries into a new map

func Keys

func Keys[K comparable, V any](m map[K]V) []K

func ReduceEntries added in v0.3.0

func ReduceEntries[Value any, Key comparable, Element any](
	initialValue Value,
	elements map[Key]Element,
	reducer func(Value, Key, Element) Value,
) Value

ReduceEntries applies a reducer function to the entries of the map

func ReduceKeys added in v0.3.0

func ReduceKeys[Value any, Key comparable, Element any](
	initialValue Value,
	elements map[Key]Element,
	reducer func(Value, Key) Value,
) Value

ReduceKeys applies a reducer function to the keys of the map

func ReduceValues added in v0.3.0

func ReduceValues[Value any, Key comparable, Element any](
	initialValue Value,
	elements map[Key]Element,
	reducer func(Value, Element) Value,
) Value

ReduceValues applies a reducer function to the values of the map

func Values

func Values[K comparable, V any](m map[K]V) []V

Types

type Entry

type Entry[K comparable, V any] struct {
	Key   K
	Value V
}

func Entries

func Entries[K comparable, V any](m map[K]V) []Entry[K, V]

Jump to

Keyboard shortcuts

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