operator > method

bool operator >(
  1. BasicDate other
)

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

Implementation

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