diff options
Diffstat (limited to 'lib/containers/set.go')
-rw-r--r-- | lib/containers/set.go | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/lib/containers/set.go b/lib/containers/set.go index 42e5ad2..1c525ca 100644 --- a/lib/containers/set.go +++ b/lib/containers/set.go @@ -13,6 +13,10 @@ import ( "git.lukeshu.com/btrfs-progs-ng/lib/maps" ) +// Set[T] is an unordered set of T. +// +// Despite Set[T] being unordered, T is required to be an ordered type +// in order that a Set[T] have a deterministic JSON representation. type Set[T constraints.Ordered] map[T]struct{} var ( @@ -45,6 +49,14 @@ func (o *Set[T]) DecodeJSON(r io.RuneScanner) error { }) } +func NewSet[T constraints.Ordered](values ...T) Set[T] { + ret := make(Set[T], len(values)) + for _, value := range values { + ret.Insert(value) + } + return ret +} + func (o Set[T]) Insert(v T) { o[v] = struct{}{} } @@ -79,7 +91,12 @@ func (o Set[T]) TakeOne() T { return zero } -func (small Set[T]) HasIntersection(big Set[T]) bool { +func (o Set[T]) Has(v T) bool { + _, has := o[v] + return has +} + +func (small Set[T]) HasAny(big Set[T]) bool { if len(big) < len(small) { small, big = big, small } |