difference method

TreapSetOfInt difference(
  1. TreapSetOfInt other
)
override

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

Implementation

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