Shane F. Carr

Results 1955 comments of Shane F. Carr

# 2024-04-23 Special Meeting https://github.com/unicode-org/icu4x/issues/3931 Four categories of functionality: 1. Core Structs, including comparison, normalization 2. Parent Locales, Partial Likely Subtags 3. Aliases, Full Likely Subtags, Locale Directionality 4. Display...

This can be done ahead of time by creating crates and re-exports.

`AsciiIgnoreCase` is `AsciiOnly` that ignores case. I'm not currently aware for a use case for `WithBytes` that ignores ASCII case. I think I came up with the name `WithBytes` as...

@Manishearth @robertbastian Can you weigh in and suggest alternatives?

Discussion: - We can carry info forward between requests using DataRequestMetadata - We could borrow a locale, etc., in that metadata.

In https://github.com/unicode-org/icu4x/pull/4207 I'm implementing a ZeroTrie variant, which, if [the previous benchmarks](https://github.com/unicode-org/icu4x/pull/2722#issuecomment-1442837328) hold, is faster and smaller than the current ZeroMap2d variant. However, ZeroHashMap is likely the fastest, but it...

Raising the priority again because the ZeroTrie optimization was only applied to blob provider. We should still explore a solution for baked provider. This performance impact manifests itself in NeoDateTimeFormatter,...

An issue I'm encountering now is that in datetime format, the ZeroTrie lookup tables for skeleta are fairly large. If we were able to share strings between keys (calendars), they...