operator <= method

bool operator <=(
  1. NornsDuration other
)

Implementation

bool operator <=(NornsDuration other) {
  return _milliseconds <= other._milliseconds;
}