startsAfter method

bool startsAfter(
  1. Interval other
)

Does this.a start after other.b? May or may not be disjoint */

Implementation

bool startsAfter(Interval other) {
  return a > other.a;
}