operator - method

List<Range<TYPE>> operator -(
  1. Range<TYPE> that
)

Operator for the difference between this range and another range.

that The other range to subtract.

Returns a list of ranges that represent the difference between the two ranges.

Implementation

List<Range<TYPE>> operator -(Range<TYPE> that) => except(that);