Versions in this module Expand all Collapse all v1 v1.0.2 Jul 13, 2023 v1.0.1 Jul 13, 2023 Changes in this version + type IntSet struct + func NewIntSet(elements ...int) *IntSet + func (s *IntSet) Contains(element int) bool + func (s *IntSet) Copy() *IntSet + func (s *IntSet) Delete(elements ...int) + func (s *IntSet) Difference(other *IntSet) *IntSet + func (s *IntSet) Disjoint(other *IntSet) bool + func (s *IntSet) Elements() []int + func (s *IntSet) Empty() bool + func (s *IntSet) Equal(other *IntSet) bool + func (s *IntSet) Insert(elements ...int) + func (s *IntSet) Intersect(other *IntSet) *IntSet + func (s *IntSet) Len() int + func (s *IntSet) Sorted() []int + func (s *IntSet) String() string + func (s *IntSet) Union(other *IntSet) *IntSet + func (s *IntSet) Unique(other *IntSet) *IntSet