ksub method

double ksub(
  1. num b
)

两个数相减(防止精度丢失)

Implementation

double ksub(num b) => _KNumUtils.sub(this ?? 0, b).toDouble();