operator >= method

bool operator >=(
  1. Date other
)

bigger than or equal operator

Implementation

bool operator >=(Date other) {
  return julianDayNumber >= other.julianDayNumber;
}