Shane F. Carr

Results 2307 comments of Shane F. Carr

Not currently compatible with the repo MSRV.

I think it's fine. We have old draft PRs.

I wish we could avoid making `PatternPlurals` a ULE. This part of the datetime provider may be changing as part of #1317. In that issue, the skeletons will no longer...

> Moving everything to zero-copy does block CrabBake, and while we can have components opt out of CrabBake I think it would be nice if DTF didn't need to. My...

The data has been removed, and I'm removing the marker in https://github.com/unicode-org/icu4x/pull/5612 To track a longer-term home for these things, I created https://github.com/unicode-org/icu4x/issues/5611

This currently works: ```rust TypedFormatter::try_new( locale, fieldset::YMD::with_length(Medium) ) .format(Date::try_new_gregorian_date(...)) ``` This currently requires an explicit NeverCalendar: ```rust TypedFormatter::::try_new( locale, fieldset::HM::with_length(Medium) ) .format(Time::try_new(...)) ``` If we had `format_time` (https://github.com/unicode-org/icu4x/issues/5269#issuecomment-2361895181), the type...

What would `pub type TimeFormatter` map to? `pub type TimeFormatter = TypedFormatter` `pub type TimeFormatter = Formatter` `pub type TimeFormatter = TypedFormatter`

Shane/Rob discussion: @sffc Note: I have already replaced `NeverCalendar` with `()`. We currently have: ``` DateTimeFormatter // field set FixedCalendarDateTimeFormatter // calendar, field set ``` Discussion: - @robertbastian - We...