The documentation for Base.reshape says > 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.
So if I want to guarantee that the reshaped array shares the same data, and that modifying the new array modifies the old array, what should I use?
