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
Interval.new
DateTime
NaiveDateTime
The following code snippet:
from = ~U[2021-01-07 00:00:00.000000Z] until = ~U[2021-03-07 00:00:00.000000Z] Timex.Interval.new(from: from, until: until)
returns:
%Timex.Interval{ from: ~N[2021-01-07 00:00:00.000000], left_open: false, right_open: true, step: [days: 1], until: ~N[2021-03-07 00:00:00.000000] }
I would expect the result to keep the same type as the input ones, and not implicitly convert them to NaiveDateTime.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce
The following code snippet:
returns:
Description of issue
I would expect the result to keep the same type as the input ones, and not implicitly convert them to
NaiveDateTime
.The text was updated successfully, but these errors were encountered: