Passing/Moving parameters of a constructor in C++0x

Viewed 6552

If I have a constructor with n parameters such that any argument to that can be an rvalue and lvalue. Is it possible to do support this with move semantics for the rvalues without writing 2^n constructors for each possible rvalue/lvalue combination?

3 Answers
Related