Namespaces
Variants
Views
Actions

std::forward_list<T,Allocator>::insert_after

From cppreference.com
< cpp‎ | container‎ | forward list
Revision as of 18:39, 31 May 2013 by P12bot (Talk | contribs)

 
 
 
 
iterator insert_after( const_iterator pos, const T& value );
(1) (since C++11)
iterator insert_after( const_iterator pos, T&& value );
(2) (since C++11)
iterator insert_after( const_iterator pos, size_type count, const T& value );
(3) (since C++11)
template< class InputIt >
iterator insert_after( const_iterator pos, InputIt first, InputIt last );
(4) (since C++11)
iterator insert_after( const_iterator pos, std::initializer_list<T> ilist );
(5) (since C++11)

Inserts elements after the specified position in the container.

1-2) inserts value after the element pointed to by pos
3) inserts count copies of the value after the element pointed to by pos
4) inserts elements from range [first, last) after the element pointed to by pos
5) inserts elements from initializer list ilist.

Contents

Parameters

pos - element after which the content will be inserted
value - element value to insert
first, last - the range of elements to insert
ilist - initializer list to insert the values from
Type requirements

Template:par req concept

Return value

Iterator to the inserted element.

Complexity

See also

Template:cpp/container/dcl list emplace afterTemplate:cpp/container/dcl list push front