NewFromString creates a new decimal from s. It has no restrictions on exponents or precision.
(s string)
| 172 | // NewFromString creates a new decimal from s. It has no restrictions on |
| 173 | // exponents or precision. |
| 174 | func NewFromString(s string) (*Decimal, Condition, error) { |
| 175 | return BaseContext.NewFromString(s) |
| 176 | } |
| 177 | |
| 178 | // SetString sets d to s and returns d. It has no restrictions on exponents |
| 179 | // or precision. |
searching dependent graphs…