Versions in this module Expand all Collapse all v0 v0.2.0 Apr 7, 2026 Changes in this version type Map + func (m *Map[V]) Mutate(key string, fn func(value V) (V, error)) error v0.1.0 Jan 22, 2025 Changes in this version + type Map struct + func NewMap(partitons int) *Map + func (m *Map) Count() int + func (m *Map) Delete(key string) (any, bool) + func (m *Map) Each(fn func(key string, value any) error) error + func (m *Map) Get(key string) (any, bool) + func (m *Map) GetOrCreate(key string, fn func() (any, error)) (any, error) + func (m *Map) Set(key string, value any) any