or static method

combine all sets in the array returned the or'd value */

Implementation

static IntervalSet or(List<IntervalSet> sets) {
  final r = IntervalSet();
  for (final s in sets) {
    r.addAll(s);
  }
  return r;
}