Returns a new set with the elements of this that are not in other.
other
HashSet<T> difference(HashSet<T> other) { return HashSet<T>.from(_container.difference(other._container)); }