package
0.0.0-20240131150731-99cda8c7308a
Repository: https://github.com/bartossh/algo.git
Documentation: pkg.go.dev

# Functions

Difference returns all elements from s1 that are not present in s2.
Disjoint returns false if sets are having at least one common member or true otherwise.
Equal returns true if sets are deeply equal or false otherwise.
Intersection returns Set that contais all members that are present in both Sets.
New creates new empty Set.
NewFromSlice creates new Set from slice.
Subset returns true is s1 is a subset of s2 or false otherwise.
Union returns merged set s1 and s2 in to one new Set.

# Type aliases

Set type allows to store unique values of string.