operator < method

bool operator <(
  1. SlotTimeUnit other
)

Returns true if this SlotTimeUnit is earlier than other.

Implementation

bool operator <(SlotTimeUnit other) => index < other.index;