Versions in this module Expand all Collapse all go1 go1.18.10 Jan 10, 2023 Changes in this version + type Cache struct + func (c *Cache) Clear() + func (c *Cache) Delete(key any) + func (c *Cache) DeleteIf(pred func(key any) bool) + func (c *Cache) Do(key any, f func() any) any + func (c *Cache) Get(key any) any + type Queue struct + func NewQueue(maxActive int) *Queue + func (q *Queue) Add(f func()) + func (q *Queue) Idle() <-chan struct{} + type Work struct + func (w *Work) Add(item any) + func (w *Work) Do(n int, f func(item any))