selectIntersect method

SegmentList selectIntersect(
  1. CombinedSegmentLists combined
)

Implementation

SegmentList selectIntersect(CombinedSegmentLists combined) {
  var result = SegmentSelector.intersect(
    combined.combined,
    log,
  );
  result.inverted = combined.inverted1 && combined.inverted2;

  return result;
}