Android Utililty Methods Set Union

List of utility methods to do Set Union

Description

The list of methods to do Set Union are organized into topic(s).

Method

SortedSetsortedUnion(Set a, Set b)
Constructs the sorted union of two sets
SortedSet<T> retVal = new TreeSet<T>(a);
retVal.addAll(b);
return retVal;