I have already the list pointer of CDrawObject*
std::list<CDrawObject*> elements;
How I can move some element to the end of list. I see STL Algorithms Reference but i don't find this operations. How i can do it?
|
I have already the list pointer of CDrawObject*
How I can move some element to the end of list. I see STL Algorithms Reference but i don't find this operations. How i can do it? |
|||||||||
|
|
Use the list method splice()
Move iterator i from list x into current list at position "position" Thus to move it to the end put
(they can both be the same list or different lists as long as the list from which the item is moved has the same type, both T and Allocator) |
|||
|
|
|
A |
|||||||||||||||
|
|
Remove it then append it to your list. |
|||
|
|