operator < method

bool operator <(
  1. Time other
)

Whether this Time is shorter than other.

Implementation

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