operator <= method

bool operator <=(
  1. Time other
)

Implementation

bool operator <=(Time other) {
  return inMins <= other.inMins;
}