dsharlet / array

C++ multidimensional arrays in the spirit of the STL
Apache License 2.0
198 stars 15 forks source link

Should move/make_*_move use rvalue references for the source? #8

Closed dsharlet closed 4 years ago

dsharlet commented 4 years ago

These functions move elements from the source, but not the source itself.

However, it is also possible that the make_move, make_dense_move, and make_compact_move functions should move the whole source if the shape is equal to the source's shape.