Versions in this module Expand all Collapse all v0 v0.7.6 Oct 23, 2025 v0.7.5 Jun 30, 2025 Changes in this version + type Map struct + func New[K comparable, V any]() *Map[K, V] + func (m *Map[K, V]) Delete(key K) + func (m *Map[K, V]) Get(key K) (V, bool) + func (m *Map[K, V]) Keys() []K + func (m *Map[K, V]) Set(key K, value V) + func (m *Map[K, V]) WithLock(fn func(map[K]V)) + func (m *Map[K, V]) WithRLock(fn func(map[K]V))