Versions in this module Expand all Collapse all v0 v0.2.1 Mar 2, 2025 v0.2.0 Mar 2, 2025 Changes in this version + type Group struct + func (g *Group[K, V]) Do(key K, fn func() (V, error)) (V, error) + func (g *Group[K, V]) DoChan(key K, fn func() (V, error)) <-chan Result[V] + func (g *Group[K, V]) TryDo(key K, fn func() (V, error)) (V, error, bool) + type Result struct + Err error + Val V