We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9f4733 commit 7bef23eCopy full SHA for 7bef23e
src/intervals/functions.jl
@@ -389,5 +389,5 @@ is currently implemented only for a strictly positive or negative divisor y."""
389
end
390
391
392
-mod(x::Interval, y::Interval) where T = throw(ArgumentError("mod not defined for interval as divisor `y`"))
393
-mod(x::Real, y::Interval) where T = throw(ArgumentError("mod not defined for interval as divisor `y`"))
+mod(x::Interval, y::Interval) = throw(ArgumentError("mod not defined for interval as divisor `y`"))
+mod(x::Real, y::Interval) = throw(ArgumentError("mod not defined for interval as divisor `y`"))
0 commit comments