Returns a new SortedSet which contains all the elements of this set and other.
other
SortedSet<T> union(SortedSet<T> other) { return SortedSet<T>.from(_container.union(other._container), _compare); }