Versions in this module Expand all Collapse all v0 v0.3.37 Jun 8, 2023 v0.3.36 May 25, 2023 Changes in this version + type Hset struct + func New() *Hset + func (hset *Hset) Add(items ...interface{}) + func (hset *Hset) Clear() + func (hset *Hset) Contains(items ...interface{}) bool + func (hset *Hset) Empty() bool + func (hset *Hset) Exists(item interface{}) bool + func (hset *Hset) Len() int + func (hset *Hset) Remove(items ...interface{}) + func (hset *Hset) Same(other Set) bool + func (hset *Hset) String(pre ...bool) string + func (hset *Hset) Values() []interface{} + func (set *Hset) FromJSON(data []byte) error + func (set *Hset) ToJSON() ([]byte, error) + type Set interface + Add func(items ...interface{}) + Clear func() + Contains func(items ...interface{}) bool + Len func() int + Remove func(items ...interface{}) + Same func(other Set) bool + String func() string + Values func() []interface{}