|
| template<typename I , typename O > |
| O | boost::move (I f, I l, O result) |
| | Effects: Moves elements in the range [first,last) into the range [result,result + (last - first)) starting from first and proceeding to last. More...
|
| |
| template<typename I , typename O > |
| O | boost::move_backward (I f, I l, O result) |
| | Effects: Moves elements in the range [first,last) into the range [result - (last-first),result) starting from last - 1 and proceeding to first. More...
|
| |
| template<typename I , typename F > |
| F | boost::uninitialized_move (I f, I l, F r) |
| | defined(BOOST_MOVE_USE_STANDARD_LIBRARY_MOVE) More...
|
| |
| template<typename I , typename F > |
| F | boost::uninitialized_copy_or_move (I f, I l, F r) |
| | Effects: More...
|
| |
| template<typename I , typename F > |
| F | boost::copy_or_move (I f, I l, F r) |
| | Effects: More...
|
| |