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