NumDigits returns the number of decimal digits of d.Coeff. gcassert:inline
()
| 55 | // |
| 56 | //gcassert:inline |
| 57 | func (d *Decimal) NumDigits() int64 { |
| 58 | return NumDigits(&d.Coeff) |
| 59 | } |
| 60 | |
| 61 | // NumDigits returns the number of decimal digits of b. |
| 62 | func NumDigits(b *BigInt) int64 { |