should x // y
such that iszero(x) && iszero(y)
throw an ArgumentError
or a DivideError
?
#56754
Labels
error handling
Handling of exceptions by Julia or the user
maths
Mathematical functions
rationals
The Rational type and values thereof
The fact that dividing zero by zero throws
DivideError
in some cases, butArgumentError
in other cases seems inconsistent:FWIW:
Should
0 // 0
be changed to throwDivideError
? Should(0 // 1) // 0
be changed to throwArgumentError
?The specific reason I'm interested in this inconsistency is that I'm implementing a type very similar to
Rational
in a package. So I need to decide what to throw there.The text was updated successfully, but these errors were encountered: