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
gcd(a,b) != gcdx(a,b)[1]
From the documentation I would expect gcdx's first return value to always equal gcd's return value on the same arguments. And yet:
gcdx
gcd
julia> gcdx(UInt16(100), Int8(-101)) (0x0005, 0xf855, 0x0003) julia> gcd(UInt16(100), Int8(-101)) 0x0001
See also #58010
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From the documentation I would expect
gcdx
's first return value to always equalgcd
's return value on the same arguments. And yet:See also #58010
The text was updated successfully, but these errors were encountered: