Versions in this module Expand all Collapse all v0 v0.0.1 Jan 3, 2023 Changes in this version + type Cond struct + Info runtime.CondInfo + L Locker + Record TradRecord + func NewCond(l Locker) *Cond + func (c *Cond) Broadcast() + func (c *Cond) Signal() + func (c *Cond) Wait() + type Locker interface + Lock func() + Unlock func() + type Map struct + func (m *Map) Delete(key interface{}) + func (m *Map) Load(key interface{}) (value interface{}, ok bool) + func (m *Map) LoadAndDelete(key interface{}) (value interface{}, loaded 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 + Info runtime.MuInfo + Record TradRecord + 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 + Info runtime.RWMuInfo + Record TradRecord + func (rw *RWMutex) Lock() + func (rw *RWMutex) RLock() + func (rw *RWMutex) RLocker() Locker + func (rw *RWMutex) RUnlock() + func (rw *RWMutex) Unlock() + type TradRecord struct + ID string + PreLoc uint16 + type WaitGroup struct + Info runtime.WgInfo + Record TradRecord + func (wg *WaitGroup) Add(delta int) + func (wg *WaitGroup) Done() + func (wg *WaitGroup) Wait()