operator + method

BigDecimal operator +(
  1. BigDecimal other
)

Implementation

BigDecimal operator +(BigDecimal other) =>
    _add(intVal, other.intVal, scale, other.scale);