Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func MapAdd ¶
func MapAdd[K comparable, V any, Map MapInterface[K, V]](m Map, k K, v V) func()
Types ¶
type Map ¶
type Map[K comparable, V any] map[K]V
type MapInterface ¶
type MapInterface[K comparable, V any] interface { Lookup(key K) (V, bool) Get(key K) V Set(key K, val V) Delete(key K) Len() int Keys() []K }
type Set ¶
type Set[T comparable] struct { // contains filtered or unexported fields }
Click to show internal directories.
Click to hide internal directories.