I notice that C++0x would include semantic move, would the compiler handle the move for the users?Or should we explicitly ask the compiler to do it for us?
should we code like this
1 2 3
//Mat are some kind of matrix container
Mat_<int> A = something;
A = std::move(A.inv()); // do the inverse transform
or
1 2 3
//Mat are some kind of matrix container
Mat_<int> A = something;
A = A.inv(); // do the inverse transform