operator + method

List<Interval> operator +(
  1. List<Interval> other
)

Implementation

List<Interval> operator +(List<Interval> other) {
  for (var value in other) {
    _add(value);
  }
  return this._intervals;
}