unicode-org / icu4x

Solving i18n for client-side and resource-constrained environments.
https://icu4x.unicode.org
Other
1.38k stars 176 forks source link

Get inspirations from Go Text #2882

Open brawer opened 1 year ago

brawer commented 1 year ago

The golang x-text library has re-implemented most of ICU from scratch, and some of their algorithms and data structures might be interesting for the icu4x project (afaik x-text was not just a port of the ICU codebase to another language, but an actual re-implementation). You might want to have a look at their code, or talk to @mpvl who wrote most of it.

Manishearth commented 1 year ago

@brawer Are there specific areas of the code you think would be useful in particular?

sffc commented 1 year ago

Just looked over the code here. Some high-level takeaways:

I'll take this issue with the action to list this library as "prior art" in the contributors guide so that folks can reference it when designing new features.