difference method

ISet<A> difference(
  1. ISet<A> other
)

Implementation

ISet<A> difference(ISet<A> other) => other._tree.foldLeft(this, (p, A a) => p.remove(a));