time-rs / time

The most used Rust library for date and time handling.
https://time-rs.github.io
Apache License 2.0
1.09k stars 273 forks source link

Weekday from number #542

Closed Kinrany closed 1 year ago

Kinrany commented 1 year ago

Currently weekdays can be converted to numbers, with four options: zero-based/one-based and sunday-based/monday-based.

It would be convenient to have the reverse constructors: from a zero-based or one-based offset, for a sunday-based or monday-based week, create a Weekday value.

jhpratt commented 1 year ago

This is definitely doable with minimal effort. Once I get to documenting features that are on main and cut a release, I can do this quite quickly.

Kinrany commented 1 year ago

I can probably help with a PR. Unless it's easier for you to just do it compared to reviewing code later.

jhpratt commented 1 year ago

Up to you! Either way it will be in a separate release.