difference method

TreapSetOfDouble difference(
  1. TreapSetOfDouble other
)
override

Returns a new set with the elements of this set that are not in other.

Implementation

TreapSetOfDouble difference(TreapSetOfDouble other) =>
    TreapSetOfDouble._(base.difference(other.base));