Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SyncMap ¶
type SyncMap[K comparable, V any] interface { Get(key K) (value V, ok bool) Put(key K, value V) (inserted bool) }
syncmap is a very simple type-safe locked map, with semantics similar to sync.Map, but only supports inserting once and getting.
func New ¶
func New[K comparable, V any]() SyncMap[K, V]
Click to show internal directories.
Click to hide internal directories.