I have some STL container type T, say template< typename F > using T = std::vector< F >;. I want to be able to write the following code:
typedef std::string F;
T< F > v(2, "a"), w(3, "b");
v += std::move(w);
std::cout << "v : ";
std::copy(std::begin(v), std::end(v), std::ostream_iterator< F >(std::cout, "|"));
std::cout << std::endl << "w : ";
std::copy(std::begin(w), std::end(w), std::ostream_iterator< F >(std::cout, "|"));
std::cout << std::endl;
and get the output:
v : a|a|b|b|b|
w : |||
I.e. I want to be able to append all the contents of the source w to the end of the destination v by means of "std::move-ing" (as one from <utility> one by one or as from <algorithm> by range), so that all the source's elements remained empty and it will require just w.clear(); call.
Is it possible to make the operator to recognize the rvalue reference? Say:
T & ::operator += (T &, T &&);
Or is there something else I should want?
error: no match for 'operator+=' in 'foo += std::move<std::vector<std::basic_string<char> >&>((* & bar))'– Dukales Feb 8 at 10:26int main () { std::vector< std::string > foo = {"1", "2", "3", "4"}; std::vector< std::string > bar = {"5", "6"}; foo += std::move(bar); return 0;}– Dukales Feb 8 at 10:27operator+=, you didn't actually write it! – Jonathan Wakely Feb 8 at 10:29operator=must be a non-static member function, butoperator+=doesn't need to be – Jonathan Wakely Feb 8 at 11:28