MakeErrDecimal creates a ErrDecimal with given context.
(c *Context)
| 16 | |
| 17 | // MakeErrDecimal creates a ErrDecimal with given context. |
| 18 | func MakeErrDecimal(c *Context) ErrDecimal { |
| 19 | return ErrDecimal{ |
| 20 | Ctx: c, |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | // ErrDecimal performs operations on decimals and collects errors during |
| 25 | // operations. If an error is already set, the operation is skipped. Designed to |
no outgoing calls
searching dependent graphs…