std::list::push_front
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> void push_front( const T& value ); |
||
void push_front( T&& value ); |
(seit C++11) | |
Prepends den gegebenen Element
value an den Anfang des Containers . Original:
Prepends the given element
value to the beginning of the container. 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.
No iterators or references are invalidated.
Parameter
| value | - | der Wert des Elements voranzustellen
Original: the value of the element to prepend The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
(None)
Original:
(none)
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.
Komplexität
Constant .
Original:
Constant.
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.
