std::move_backward
De cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
Defined in header <algorithm>
|
||
template< class BidirIt1, class BidirIt2 > BidirIt2 move_backward( BidirIt1 first, BidirIt1 last, BidirIt2 d_last ); |
||
Mueve los elementos de la
[first, last)
rango, a otro final rango en d_last
. Los elementos se mueven en sentido inverso (del último elemento se mueve primero), pero su orden relativo se conserva . Original:
Moves the elements from the range
[first, last)
, to another range ending at d_last
. The elements are moved in reverse order (the last element is moved first), but their relative order is preserved. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Contenido |
[editar] Parámetros
first, last | - | la gama de los elementos de moverse
Original: the range of the elements to move The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
d_last | - | final del rango de destino. Si está dentro de d_last [first, last) , NJ std :: move </ span> debe ser utilizado en lugar de std::move_backward . Original: end of the destination range. If d_last is within [first, last) , NJ std :: move </ span> must be used instead of std::move_backward. </div>The text has been machine-translated via Google Translate. </div></div></div></div>
You can help to correct and verify the translation. Click here for instructions. |
Type requirements | ||
-BidirIt1, BidirIt2 must meet the requirements of BidirectionalIterator .
|
[editar] Valor de retorno
Iterator en el rango de destino, señalando el último elemento movido .
Original:
Iterator in the destination range, pointing at the last element moved.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Complejidad
Exactamente
last - first
mover asignaciones .Original:
Exactly
last - first
move assignments.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Posible implementación
template< class BidirIt1, class BidirIt2 > BidirIt2 move_backward(BidirIt1 first, BidirIt1 last, BidirIt2 d_last) { while (first != last) { *(--d_last) = std::move(*(--last)); } return d_last; } |
[editar] Ejemplo
This section is incomplete Reason: no example |
[editar] Ver también
(C++11) |
mueve una serie de elementos a una nueva ubicación Original: moves a range of elements to a new location The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función de plantilla) |