selectXor method

SegmentList selectXor(
  1. CombinedSegmentLists combined
)

Implementation

SegmentList selectXor(CombinedSegmentLists combined) {
  var result = SegmentSelector.xor(combined.combined, log);
  result.inverted = combined.inverted1 != combined.inverted2;

  return result;
}