operator <= method

bool operator <=(
  1. BasicDate other
)

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

Implementation

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