wip: new folder structure, overhaul language

This commit is contained in:
2025-12-26 02:39:15 -05:00
parent 11e7f70625
commit d427703afe
10 changed files with 132 additions and 111 deletions

View File

@@ -18,7 +18,7 @@ func (s *Set[T]) Remove(items ...T) {
}
}
func (s *Set[T]) Union(o Set[T]) {
func (s *Set[T]) Merge(o Set[T]) {
for item := range o {
s.Add(item)
}