Dec 5, 2015 at 12:30pm
move constructors for example move data from one chunk of memory to another.
Dec 5, 2015 at 1:12pm
@codekiddy
hi thanks for the reply.
could that also mean operator=()
?
Dec 5, 2015 at 1:21pm
note that operator=()
can be an assignment and move assignment operator.
so if operator=()
is a move assignment operator then yes.
anything that involves move semantics, moves data in memory.
Dec 5, 2015 at 2:44pm
i see thanks, asnwered all my needs
thank you @codekiddy