Hello,
The function multi_array::resize() returns a multi_array reference.
Does it mean that resize can change the memory location of the current multi_array object?
In other words, if I have

multi_array *my_array;

can I just do

my_array->resize()

or I should do

my_array=my_array->resize()

?

Thanks a lot,

Juan