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
The following methods are pirated from Base and Unitful.
Base
Unitful
round(x::AbstractArray{<:Quantity}, r::Int) round{T<:Quantity}(x::T, r::Int) mean(x::AbstractArray{<:Quantity}, r::Int) ustrip(x::Missings.Missing) *{T<:Unitful.FreeUnits}(y::Missings.Missing, x::T) *(x::Unitful.Units, y::Number) *(x::Unitful.Units, y::Period) *(x::Period, y::Unitful.Units) convert(a::Unitful.Units, x::Period)
The piracy can be resolved by moving them into Unitful itself.
The text was updated successfully, but these errors were encountered:
Although, these two should probably be removed and usage should change to broadcast instead:
mean(x::AbstractArray{<:Quantity}, r::Int) round(x::AbstractArray{<:Quantity}, r::Int)
Sorry, something went wrong.
round was removed from Unitful.jl on purpose. PainterQubits/Unitful.jl#78
round
Actually Unitful still has round methods for objects of type DimensionlessQuantity (https://github.com/ajkeller34/Unitful.jl/blob/master/src/quantities.jl#L279) but I agree that these methods should be deprecated and moved to Unitful or removed completely.
DimensionlessQuantity
No branches or pull requests
The following methods are pirated from
Base
andUnitful
.The piracy can be resolved by moving them into Unitful itself.
The text was updated successfully, but these errors were encountered: