操作符 <= 抽象方法

bool operator <=(
  1. num other
)

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

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

实现

bool operator <=(num other);