operator >= method

bool operator >=(
  1. BasicDate other
)

Relational greater than or equal operator. returns true if this is greater than or equal other

Implementation

bool operator >=(BasicDate other) {
  return compareTo(other) != -1;
}