operator >= method
Whether this number is numerically greater than or equal to other
.
Returns true
if this number is greater than or equal to other
.
Returns false
if this number is smaller than other
or if either value is a NaN value like double.nan.
Implementation
bool operator >=(Obj<num> other) => value >= other.value;