Versions in this module Expand all Collapse all v1 v1.18.1 Aug 15, 2022 Changes in this version + type Map struct + func (m *Map) Delete(key interface{}) + func (m *Map) Load(key interface{}) (value interface{}, ok bool) + func (m *Map) LoadOrStore(key, value interface{}) (actual interface{}, loaded bool) + func (m *Map) Range(f func(key, value interface{}) bool) + func (m *Map) Store(key, value interface{}) + type Mutex struct + func (m *Mutex) Lock() + func (m *Mutex) Unlock() + type Once struct + func (o *Once) Do(f func()) + type Pool struct + New func() interface{} + func (p *Pool) Get() interface{} + func (p *Pool) Put(x interface{}) + type RWMutex struct + func (rw *RWMutex) Lock() + func (rw *RWMutex) RLock() + func (rw *RWMutex) RUnlock() + func (rw *RWMutex) Unlock() + type WaitGroup struct + func (wg *WaitGroup) Add(delta int) + func (wg *WaitGroup) Done() + func (wg *WaitGroup) Wait()