Versions in this module Expand all Collapse all v0 v0.1.0 Nov 19, 2024 Changes in this version + type SyncMap struct + func New[K comparable, V any]() *SyncMap[K, V] + func (c *SyncMap[K, V]) ForEach(f func(k K, v V)) + func (c *SyncMap[K, V]) Get(key K) (V, bool) + func (c *SyncMap[K, V]) Keys() []K + func (c *SyncMap[K, V]) Put(key K, value V) + func (c *SyncMap[K, V]) Remove(key K)