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
Bool
Zero
One
MWE
using VectorInterface: One, Zero promote(true, One()) # stackoverflow promote(true, Zero()) # stackoverflow
This is because both Bool and One/Zero define promotion rules that return the other number type:
promote_rule(Bool, One) # One promote_rule(One, Bool) # Bool
I'll fix this in a bit.
The text was updated successfully, but these errors were encountered:
mul!
One()
Successfully merging a pull request may close this issue.
MWE
This is because both
Bool
andOne
/Zero
define promotion rules that return the other number type:I'll fix this in a bit.
The text was updated successfully, but these errors were encountered: