Documentation ¶
Index ¶
- type Set
- func (s Set[T]) Add(items ...T)
- func (s Set[T]) Clear()
- func (s Set[T]) Clone() Set[T]
- func (s Set[T]) Contains(item T) bool
- func (s Set[T]) Difference(other Set[T]) Set[T]
- func (s Set[T]) Equals(other Set[T]) bool
- func (s Set[T]) Intersection(other Set[T]) Set[T]
- func (s Set[T]) Intersects(other Set[T]) bool
- func (s Set[T]) IsEmpty() bool
- func (s Set[T]) Items() []T
- func (s Set[T]) Iterator() <-chan T
- func (s Set[T]) IteratorWithLimit(limit int) <-chan T
- func (s Set[T]) Len() int
- func (s Set[T]) Remove(item T)
- func (s Set[T]) String() string
- func (s Set[T]) SubsetOf(other Set[T]) bool
- func (s Set[T]) SupersetOf(other Set[T]) bool
- func (s Set[T]) SymmetricDifference(other Set[T]) Set[T]
- func (s Set[T]) Union(other Set[T]) Set[T]
- type StringSet
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Set ¶
type Set[T constraints.Ordered] map[T]empty
func NewSet ¶
func NewSet[T constraints.Ordered](elements ...T) Set[T]
func (Set[T]) Difference ¶
func (Set[T]) Intersection ¶
func (Set[T]) Intersects ¶
func (Set[T]) IteratorWithLimit ¶
func (Set[T]) SupersetOf ¶
func (Set[T]) SymmetricDifference ¶
Click to show internal directories.
Click to hide internal directories.