I find myself writing a lot of this: ``` jl A = reshape(A, N, div(length(A), N)) ``` Instead, I'd like to write ``` jl A = reshape(A, N, :) ```