Closed
Description
openedon Nov 16, 2013
Having .==
work on tuples would simplify a lot of dimensions checking in the linear algebra routines.
julia> A=randn(10,10);
julia> any(size(A).==10)
ERROR: no method .==((Int64,Int64),Int64)
julia> all([size(A)...].==10)
true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment