Versions in this module Expand all Collapse all v0 v0.1.3 Feb 5, 2024 v0.0.2 Jan 6, 2024 Changes in this version + type Counter struct + func NewCounter() *Counter + func (c *Counter) Dec(key string) + func (c *Counter) DecBy(key string, amt int) + func (c *Counter) Delete(key string) + func (c *Counter) Get(key string) (int, bool) + func (c *Counter) Inc(key string) + func (c *Counter) IncBy(key string, amt int) + func (c *Counter) Reset(key string) + func (c *Counter) Set(key string, to int) + func (c *Counter) Start() + func (c *Counter) Stop()