Versions in this module Expand all Collapse all v1 v1.0.0 Oct 20, 2025 Changes in this version + type Set struct + func NewSet[T comparable]() *Set[T] + func (s *Set[T]) Add(item T) + func (s *Set[T]) Contains(item T) bool + func (s *Set[T]) Equals(other *Set[T]) bool + func (s *Set[T]) Items() []T + func (s *Set[T]) Len() int + func (s *Set[T]) Remove(item T)