Move Ranges
In C++, we can move data from one range to another. Read the lesson for more details.
We'll cover the following...
std::move
moves the ranges forward; std::move_backward
moves the ranges backwards.
move
: moves the range forward:
Press + to interact
OutIt move(InpIt first, InpIt last, OutIt result)FwdIt2 move(ExePol pol, FwdIt first, FwdIt last, Fwd2It result)
...