operator <= method

bool operator <=(
  1. Time other
)

Whether this Time is shorter than or equal to other.

Implementation

bool operator <=(Time other) => ticks <= other.ticks;