Add sets d to the sum x+y.
(d, x, y *Decimal)
| 172 | |
| 173 | // Add sets d to the sum x+y. |
| 174 | func (c *Context) Add(d, x, y *Decimal) (Condition, error) { |
| 175 | return c.add(d, x, y, false) |
| 176 | } |
| 177 | |
| 178 | // Sub sets d to the difference x-y. |
| 179 | func (c *Context) Sub(d, x, y *Decimal) (Condition, error) { |