fun <T> addSets(a: Set<T>, b: Set<T>): Set<T>
Combines a and b into a single Set.
a
b
T - the type of the elements in the sets
T
a - a set
b - a set
Return a Set containing all elements from a and b