Versions in this module Expand all Collapse all v0 v0.1.0 Sep 9, 2022 Changes in this version + type Map struct + func New(capacity uint64, equals g.EqualsFn[K], hash g.HashFn[K]) *Map[K, V] + func (m *Map[K, V]) Copy() *Map[K, V] + func (m *Map[K, V]) Each(fn func(key K, val V)) + func (m *Map[K, V]) Get(key K) (V, bool) + func (m *Map[K, V]) Put(key K, val V) + func (m *Map[K, V]) Remove(key K) + func (m *Map[K, V]) Size() int