Versions in this module Expand all Collapse all v0 v0.1.0 Sep 1, 2026 Changes in this version + type Map struct + func NewMap[K, V any](h internalmaphash.Hasher[K]) *Map[K, V] + func (m *Map[K, V]) All() iter.Seq2[K, V] + func (m *Map[K, V]) Clear() + func (m *Map[K, V]) Delete(key K) (V, bool) + func (m *Map[K, V]) Get(key K) (V, bool) + func (m *Map[K, V]) Keys() iter.Seq[K] + func (m *Map[K, V]) Len() int + func (m *Map[K, V]) Set(key K, value V) (prev V, changed bool) + func (m *Map[K, V]) String() string + func (m *Map[K, V]) Values() iter.Seq[V]