* Return a new [[FixedNumber]] with the same value but has had * its field set to %%format%%. * * This will throw if the value cannot fit into %%format%%.
(format)
| 452 | * This will throw if the value cannot fit into %%format%%. |
| 453 | */ |
| 454 | toFormat(format) { |
| 455 | return FixedNumber.fromString(this.toString(), format); |
| 456 | } |
| 457 | /** |
| 458 | * Creates a new [[FixedNumber]] for %%value%% divided by |
| 459 | * %%decimal%% places with %%format%%. |
nothing calls this directly
no test coverage detected