startsAfterDisjoint method

bool startsAfterDisjoint(
  1. Interval other
)

Does this start completely after other? Disjoint */

Implementation

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