std::front_insert_iterator<Container>:: operator++
From cppreference.net
<
cpp
|
iterator
|
front insert iterator
C++
Iterator library
| Iterator concepts | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Iterator primitives | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Algorithm concepts and utilities | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Indirect callable concepts | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Common algorithm requirements | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Utilities | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Iterator adaptors | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::front_insert_iterator
| Member functions | ||||
|
front_insert_iterator::operator++
front_insert_iterator::operator++(int)
|
|
front_insert_iterator
&
operator
++
(
)
;
|
(bis C++20) | |
|
constexpr
front_insert_iterator
&
operator
++
(
)
;
|
(seit C++20) | |
|
front_insert_iterator operator
++
(
int
)
;
|
(bis C++20) | |
|
constexpr
front_insert_iterator operator
++
(
int
)
;
|
(seit C++20) | |
Tut nichts. Diese Operatorüberladungen werden bereitgestellt, um die Anforderungen von LegacyOutputIterator zu erfüllen. Sie ermöglichen es, dass die Ausdrücke * iter ++ = value und *++ iter = value verwendet werden können, um einen Wert in den zugrundeliegenden Container auszugeben (einzufügen).
Parameter
(keine)
Rückgabewert
* this