operator >= method

bool operator >=(
  1. FloatingPointValue other
)

Greater-than-or-equal operator for FloatingPointValue.

Implementation

bool operator >=(FloatingPointValue other) => compareTo(other) >= 0;