operator <= method

bool operator <=(
  1. FTime other
)

Returns true if this time is before or equal to other.

Implementation

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