intersection method

TreapSetOfDouble intersection(
  1. TreapSetOfDouble other
)
override

Returns a new set which is the intersection of this set and other.

Implementation

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