Versions in this module Expand all Collapse all v0 v0.0.8 Feb 24, 2021 Changes in this version + type Cache struct + func (c *Cache) Clear() + func (c *Cache) Delete(key interface{}) + func (c *Cache) DeleteIf(pred func(key interface{}) bool) + func (c *Cache) Do(key interface{}, f func() interface{}) interface{} + func (c *Cache) Get(key interface{}) interface{} + 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 interface{}) + func (w *Work) Do(n int, f func(item interface{}))