Shane F. Carr

Results 402 issues of Shane F. Carr

Currently GetNotationSubPattern is a self-contained operation: https://tc39.es/ecma402/#sec-getnotationsubpattern However, the notation subpattern can depend on the style. In ICU, this is already the case for currency, and it is likely useful...

s: discuss
c: numbers

The concept of an "available locale" is not always well defined. For example, DateTimeFormat might have data in more locales for certain numbering systems and calendars than others, or more...

c: locale
s: comment

We got the following feature request from a Google Search client: > I'm working on a feature … that answers \[what time will it be in X minutes/hours\]. > >...

s: help wanted
c: datetime
Proposal

In [CreateDateTimeFormat](https://tc39.es/ecma402/#sec-createdatetimeformat), it says: > 45. For each row in [Table 7](https://tc39.es/ecma402/#table-datetimeformat-components), except the header row, in table order, do > a. Let prop be the name given in the...

s: discuss
c: datetime
calendar

(I remember discussing this before, but I can't find an issue for it) We should make sure that the lists returned from Intl Enumeration is required by the spec to...

Sequence units are things like "feet and inches", "hours and minutes", etc. I have a [CLDR proposal](https://docs.google.com/document/d/1BSJFap5SnDX3E4AbG6pdK5S0HFHYQzl1d7OVD3HxP1c/edit#) to extend unit identifier syntax to support sequence units with the `+` separator:...

s: discuss
c: numbers
Proposal
new unit

This issue is tracking https://github.com/js-temporal/proposal-temporal-v2/issues/25. Once Temporal lands fully, we should take action on this.

c: datetime
s: blocked

Hi, I'm from the ICU4X team. We're an open source project building i18n components in Rust. I noticed in your README that you support "basic" line layout. If you need...

How can I write a displaydoc impl for the following struct? ```rust #[displaydoc("{kind}: {str_context}")] pub struct DataError { /// Broad category of the error. pub kind: DataErrorKind, /// Additional context,...

Currently the docs suggest doing something like ```rust let content = fs::read(path) .wrap_err_with(|| format!("Failed to read instrs from {}", path.display()))?; ``` This is such a common case that the above...

C-enhancement