Currently the documentation for reshape states:
julia> help(reshape)
Loading help data...
Base.reshape(A, dims)
Create an array with the same data as the given array, but with
different dimensions. An implementation for a particular type of
array may choose whether the data is copied or shared.
Copying or sharing should be consistent across array types. Perhaps use reshape! for a version that shares storage and save reshape for a version that copies the array's contents.
Currently the documentation for
reshapestates:Copying or sharing should be consistent across array types. Perhaps use
reshape!for a version that shares storage and savereshapefor a version that copies the array's contents.