operator >= method

bool operator >=(
  1. DateTime other
)

Allows you to compare EDateTime with each other

Implementation

bool operator >=(DateTime other) {
  if (isAfter(other) || this == other) {
    return true;
  } else {
    return false;
  }
}