Namespaces
Variants
Views
Actions

std::move

From cppreference.com
< cpp‎ | algorithm
Revision as of 00:37, 18 August 2011 by P12 (Talk | contribs)

Template:cpp/algorithm/sidebar Template:ddcl list begin <tr class="t-dsc-header">

<td>
Defined in header <algorithm>
</td>

<td></td> <td></td> </tr> <tr class="t-dcl ">

<td class="t-dcl-nopad">
template< class InputIterator, class OutputIterator >
OutputIterator move( InputIterator first, InputIterator last, OutputIterator d_first );
</td>

<td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> Template:ddcl list end

Moves the elements in the range [first, last), to another range beginning at d_first.

Contents

Parameters

first, last - the range of elements to move
d_first - the beginning of the destination range

Return value

Output iterator to the element past the last element moved (Template:cpp)

Complexity

Exactly last - first move assignments.

Equivalent function

Template:eq fun cpp

Example

Template:example cpp

See also

Template:cpp/algorithm/dcl list move backward