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
Admittedly I don't really grok how TypeVars can be used at the user level, but I find this rather unintuitive:
TypeVar
julia> A = TypeVar(:x, Integer, Real); B = TypeVar(:x, FloatingPoint, Real); C = Real; julia> A==B #false? false julia> B==C #false? true julia> C==A #false? true
The text was updated successfully, but these errors were encountered:
Covered by #8974. Also TypeVars should not be created manually, and in the future that will probably be even more important.
Sorry, something went wrong.
fixed by 3074b70
No branches or pull requests
Admittedly I don't really grok how
TypeVar
s can be used at the user level, but I find this rather unintuitive:The text was updated successfully, but these errors were encountered: