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
It is not possible to construct a 0 dimensional array as follows
Array{Int,0}()
in Julia 0.4. and 0.5.
It's also not possible to construct a 0 dimensional array as follows in julia 0.4 (but is valid in 0.5)
Array{Int,0}(())
Would it be possible to support such a syntax by defining the requisite constructors or would this require a @compat macro?
@compat
The text was updated successfully, but these errors were encountered:
Closing this, because I think I should have just used a Ref instead for my use case.
Ref
Sorry, something went wrong.
No branches or pull requests
It is not possible to construct a 0 dimensional array as follows
in Julia 0.4. and 0.5.
It's also not possible to construct a 0 dimensional array as follows in julia 0.4 (but is valid in 0.5)
Would it be possible to support such a syntax by defining the requisite constructors or would this require a
@compat
macro?The text was updated successfully, but these errors were encountered: