Parses a CharSequence decimal and store the result into the given Decimal256. @param cs is the CharSequence to be parsed @return the precision of the decimal
(CharSequence cs)
| 1017 | * @return the precision of the decimal |
| 1018 | */ |
| 1019 | public long ofString(CharSequence cs) throws NumericException { |
| 1020 | return ofString(cs, -1, -1); |
| 1021 | } |
| 1022 | |
| 1023 | /** |
| 1024 | * Parses a CharSequence decimal and store the result into the given Decimal256. |