Moritz

Results 345 comments of Moritz

See https://github.com/google/arb-editor/actions/runs/5978139349/attempts/1 - still flaky tests

I think it was not intended, as the type of the `format` method was intentionally kept to be `dynamic` and not `num` to also allow other numeric types such as...

AFAIK, treating any input as a `(List digits, int scale, bool sign)` is how ICU4X is solving the problem. Thus the upcoming `package:intl4x` will hopefully be able to format any...

> Any updates? We have to format numbers with large digits. This is a planned functionality for [`package:intl4x`](https://github.com/dart-lang/i18n/tree/main/pkgs/intl4x).

`package:intl4x` should be able to handle this, as it can format arbitrary objects using https://docs.rs/fixed_decimal/latest/fixed_decimal/struct.FixedDecimal.html#method.from_str internally. You could try running the [example code](https://pub.dev/packages/intl4x#example) with a `BigInt`!

The plan is to phase out `intl` support as we take `intl4x` out of experimental. You are free to file a PR to add this to `intl`, but this might...