operator >= method

bool operator >=(
  1. DateTime other
)

Determines if this DateTime is after or the same moment as other.

Implementation

bool operator >= (DateTime other) => !(this < other);