operator > method

bool operator >(
  1. Interval other
)

Returns true if this interval starts or ends after the other interval.

See compareTo for detailed interval comparison rules.

Implementation

bool operator >(Interval other) => compareTo(other) > 0;