operator >= 抽象方法

bool operator >=(
  1. num other
)

判断这个数字是否在数值上大于或等于 other

如果这个数字大于或等于 other,返回 true。如果这个数字小于 other,或者任意一个值是类似 double.nan 的 NaN 值,则返回 false

实现

bool operator >=(num other);