operator <= method

bool operator <=(
  1. Interval other
)

Returns true if this interval starts or ends before or same as the other interval.

See compareTo for detailed interval comparison rules.

Implementation

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