selectDifference method

SegmentList selectDifference(
  1. CombinedSegmentLists combined
)

Implementation

SegmentList selectDifference(CombinedSegmentLists combined) {
  var result = SegmentSelector.difference(combined.combined, log);
  result.inverted = combined.inverted1 && !combined.inverted2;

  return result;
}