Shane F. Carr

Results 1850 comments of Shane F. Carr

There is a list of collation-specific aliases/parents in the LDML-to-ICU converter: https://github.com/unicode-org/icu/blob/0266970e977b9e2488dfbf788cc280be3a0338ca/tools/cldr/cldr-to-icu/build-icu-data.xml#L263 Obviously, that list isn't making it into ICU4X. I chatted with @markusicu about this today. He says that...

I still need to implement the actual zigzag fallback, but this can be done in the Collation fallback mode.

I ended up leaving the `'static` bound for SliceVariant where it is, on the methods that need to call `zvl_new_borrowed`, because putting it on the associated type itself requires `T:...

@robertbastian I kind-of like having an all-in-one `ZeroMap2d::get(k0, k1)`. How strongly do you feel about getting rid of that method and keeping the cursor methods named `get0` and `get1`? If...

ok, here's what I will do then: - Rename `get` and `get_copied` to `get_2d` and `get_copied_2d` - Rename `get0` and `iter0` to `get` and `iter` - Rename `get1`, `iter1`, and...

I realized that this is a Utilities 1.0 issue, not an ICU4X 1.0 issue. I did half of the work in #2279 and I will do the other half at...

@samchen61661 is interested in working on this.

Here's how I see things progressing. The type being passed into the constructors is DataLocale for now, but I anticipate changing to _something_ like Preferences in the future. Therefore, we...

I also want to emphasize the advantages of DataLocale over Locale: 1. DataLocale has smaller code size thanks to a smaller `Drop` impl and fewer things to maybe deallocate 2....

Note that part of this issue is resolving that certain APIs (mainly DTF) currently _require_ that LocaleFallbackProvider be enabled. We should make sure that the extensions are specified correctly before...