We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DateTime.Year
Given the following underlying DateTime objects, I get the following invalid RFC3339Strings:
DateTime
RFC3339String
(DateTime (Date (Year 97147) December (Day 26)) (Time (Hour 3) (Minute 36) (Second 4) (Millisecond 729))) 97147-12-26T03:36:04.729569335Z
(DateTime (Date (Year -114165) February (Day 12)) (Time (Hour 16) (Minute 32) (Second 8) (Millisecond 241))) 000-114165-02-12T16:32:08.241663734Z
The problem is while RFC3339 expects a year in the inclusive range 0-9999, the range for DateTime.Year is
instance boundedYear :: Bounded Year where bottom = Year (-271820) top = Year 275759
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given the following underlying
DateTime
objects, I get the following invalidRFC3339String
s:The problem is while RFC3339 expects a year in the inclusive range 0-9999, the range for
DateTime.Year
isThe text was updated successfully, but these errors were encountered: