Versions in this module Expand all Collapse all v0 v0.2.0 Feb 8, 2026 Changes in this version + type Map struct + func NewMap[K comparable, V any]() *Map[K, V] + func (m *Map[K, V]) Get(key K) (V, bool) + func (m *Map[K, V]) Range(fn func(K, V) bool) + func (m *Map[K, V]) Set(key K, value V)