operator >= method

bool operator >=(
  1. Q q
)

Greater than or equal operator

Implementation

bool operator >=(Q q) => this > q || this == q;