Versions in this module Expand all Collapse all v1 v1.24.5 Aug 14, 2025 Changes in this version + func FilterSlice[E any, T comparable](s []E, include func(E) (T, bool)) []T + type Set map[T]struct + func SetOf[T comparable](values ...T) Set[T] + func (s Set[T]) Add(value T) bool + func (s Set[T]) AddMultiple(values ...T) + func (s Set[T]) Contains(values ...T) bool + func (s Set[T]) Remove(value T) bool + func (s Set[T]) Union(sets ...Set[T]) Set[T] + func (s Set[T]) Values() []T