std::front_insert_iterator::operator=
来自cppreference.com
< cpp | iterator | front insert iterator
|
|
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. |
| front_insert_iterator<Container>& operator=( const typename Container::value_type& value ); |
(1) | |
| front_insert_iterator<Container>& operator=( typename Container::value_type&& value ); |
(2) | |
插入到容器中的给定值
value.Original:
Inserts the given value
value to 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.
1) Results in container->push_front(value)
2) Results in container->push_front(std::move(value))
[编辑] 参数
| value | - | 插入的值
Original: the value to insert The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[编辑] 返回值
*this
[编辑] 为例
| 本节是不完整的 |