reduce method

int reduce(
  1. int reduction
)

减数

Implementation

int reduce(int reduction) {
  if (this.isNullOrZero) {
    return -reduction;
  }
  return this ?? 0 - reduction;
}