Versions in this module Expand all Collapse all v0 v0.1.0 Apr 12, 2026 Changes in this version + type Map struct + func NewMap[K comparable, V any](opts ...Option) *Map[K, V] + func (m *Map[K, V]) Clear() + func (m *Map[K, V]) Delete(key K) + func (m *Map[K, V]) Entries() iter.Seq2[K, V] + func (m *Map[K, V]) Get(key K) (value V, present bool) + func (m *Map[K, V]) Insert(key K, value V) + func (m *Map[K, V]) Keys() iter.Seq[K] + func (m *Map[K, V]) Len() int + func (m *Map[K, V]) Pop(key K) (value V, present bool) + func (m *Map[K, V]) Push(key K, value V) + func (m *Map[K, V]) Reverse() Reversed[K, V] + func (m *Map[K, V]) Set(key K, value V) + func (m *Map[K, V]) Values() iter.Seq[V] + type Option func(*config) + func WithCapacity(capacity int) Option + type Reversed interface + Entries func() iter.Seq2[K, V] + Keys func() iter.Seq[K] + Values func() iter.Seq[V]