Shane F. Carr
Shane F. Carr
This is the meta-issue to track tasks relating to user-friendly slicing of ICU4X locale data. - [x] #948 -- the primary mechanism for us to perform data slicing - [x]...
Follow-up to discussion in #1077 to verify that we take arguments by value where appropriate and by reference where appropriate, with a focus on options bags.
Pending #528, we will likely require time zones to be fully resolved into GMT offsets and metazones. However, the reality is that people will want to hand ICU4X a timestamp,...
FixedDecimal is [defined](https://unicode-org.github.io/icu4x-docs/doc/fixed_decimal/index.html) as "a core API for representing numbers in a human-readable form appropriate for formatting and plural rule selection". Currently, we support decimal numbers with leading zeros and...
This issue is tracking https://github.com/rust-diplomat/diplomat/issues/152
Context: https://github.com/unicode-org/icu4x/pull/2250#discussion_r930774402 Our style guide says that we should implement Debug on all exported types; however, we don't currently do that. @robertbastian suggested the `missing_debug_implementations` rustc lint. @Manishearth thoughts? Most...
In this code: https://github.com/unicode-org/icu4x/blob/1602d46878fa471d1e79dfcf5af5fbc2134d0fcf/experimental/segmenter/src/lstm.rs#L62 We only check for `'e'`. I think we should check for `'e'` or `'s'`. Also, consider adding more tests in general. Or consider using the experimental...
### Motivation We're trying to build an application where WASM is used to run "microfunctions", small stateless functions that can be written once in Rust and then ported via WASM...
This proposal is basically taking one of the convenience methods from popular JS helper libraries like Underscore.js and Lodash and putting it into 262. Why `uniqueBy`? Why not `zip`, `chunk`,...
As others have pointed out, we already have `[...new Set(array)]` for primitives. So, I think that the question this proposal is addressing can be generalized to, "use something other than...