Skip to content
New issue

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

support date/time + uniful arithmetic #731

Merged
merged 5 commits into from
Jul 18, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/dates.jl
Original file line number Diff line number Diff line change
Expand Up @@ -188,3 +188,14 @@ isapprox(x::AbstractArray{Dates.CompoundPeriod}, y::AbstractArray{<:AbstractQuan
kwargs...) = isapprox(y, x; kwargs...)

sleep(x::AbstractQuantity) = sleep(ustrip(s, x))

# Dates, Times, DateTimes

for f in (:+, :-)
@eval Base.$f(x::Dates.DateTime, y::Quantity) = $f(x, Dates.Nanosecond(y))
aplavin marked this conversation as resolved.
Show resolved Hide resolved
@eval Base.$f(x::Dates.Time, y::Quantity) = $f(x, Dates.Nanosecond(y))
@eval Base.$f(x::Dates.Date, y::Quantity) = $f(x, Dates.Day(y))
end
Base.:+(y::Quantity, x::Dates.DateTime) = x + Dates.Nanosecond(y)
Base.:+(y::Quantity, x::Dates.Time) = x + Dates.Nanosecond(y)
Base.:+(y::Quantity, x::Dates.Date) = x + Dates.Day(y)
Loading