std::forward_list<T,Allocator>::insert_after (3) - Linux Manuals
std::forward_list<T,Allocator>::insert_after: std::forward_list<T,Allocator>::insert_after
Command to display std::forward_list<T,Allocator>::insert_after
manual in Linux: $ man 3 std::forward_list<T,Allocator>::insert_after
NAME
std::forward_list<T,Allocator>::insert_after - std::forward_list<T,Allocator>::insert_after
Synopsis
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 > (4) (since C++11)
iterator insert_after( const_iterator pos, InputIt first, InputIt last );
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. The behavior is undefined if first and last are iterators into *this.
5) inserts elements from initializer list ilist.
No iterators or references are invalidated.
Parameters
pos - iterator after which the content will be inserted
value - element value to insert
count - number of copies to insert
first, last - the range of elements to insert
ilist - initializer list to insert the values from
Type requirements
-
InputIt must meet the requirements of LegacyInputIterator.
Return value
1-2) Iterator to the inserted element.
3) Iterator to the last element inserted, or pos if count==0.
4) Iterator to the last element inserted, or pos if first==last.
5) Iterator to the last element inserted, or pos if ilist is empty.
Exceptions
If an exception is thrown during insert_after there are no effects (strong exception guarantee).
Complexity
1-2) Constant.
3) Linear in count
4) Linear in std::distance(first, last)
5) Linear in ilist.size()
Example
// Run this code
#include <forward_list>
#include <string>
#include <iostream>
#include <vector>
template<typename T>
std::ostream& operator<<(std::ostream& s, const std::forward_list<T>& v) {
s.put('[');
char comma[3] = {'\0', ' ', '\0'};
for (const auto& e : v) {
s << comma << e;
comma[0] = ',';
}
return s << ']';
}
int main()
{
std::forward_list<std::string> words {"the", "frogurt", "is", "also", "cursed"};
std::cout << "words: " << words << '\n';
// insert_after (2)
auto beginIt = words.begin();
words.insert_after(beginIt, "strawberry");
std::cout << "words: " << words << '\n';
// insert_after (3)
auto anotherIt = beginIt;
++anotherIt;
anotherIt = words.insert_after(anotherIt, 2, "strawberry");
std::cout << "words: " << words << '\n';
// insert_after (4)
std::vector<std::string> V = { "apple", "banana", "cherry"};
anotherIt = words.insert_after(anotherIt, V.begin(), V.end());
std::cout << "words: " << words << '\n';
// insert_after (5)
words.insert_after(anotherIt, {"jackfruit", "kiwifruit", "lime", "mango"});
std::cout << "words: " << words << '\n';
}
Output:
words: [the, frogurt, is, also, cursed]
words: [the, strawberry, frogurt, is, also, cursed]
words: [the, strawberry, strawberry, strawberry, frogurt, is, also, cursed]
words: [the, strawberry, strawberry, strawberry, apple, banana, cherry, frogurt, is, also, cursed]
words: [the, strawberry, strawberry, strawberry, apple, banana, cherry, jackfruit, kiwifruit, lime, mango, frogurt, is, also, cursed]
See also
constructs elements in-place after an element
emplace_after (public member function)
inserts an element to the beginning
push_front (public member function)
Pages related to std::forward_list<T,Allocator>::insert_after
- std::forward_list<T,Allocator>::assign (3) - std::forward_list<T,Allocator>::assign
- std::forward_list<T,Allocator>::before_begin,cbefore_begin (3) - std::forward_list<T,Allocator>::before_begin,cbefore_begin
- std::forward_list<T,Allocator>::begin,std::forward_list<T,Allocator>::cbegin (3) - std::forward_list<T,Allocator>::begin,std::forward_list<T,Allocator>::cbegin
- std::forward_list<T,Allocator>::clear (3) - std::forward_list<T,Allocator>::clear
- std::forward_list<T,Allocator>::emplace_after (3) - std::forward_list<T,Allocator>::emplace_after
- std::forward_list<T,Allocator>::emplace_front (3) - std::forward_list<T,Allocator>::emplace_front
- std::forward_list<T,Allocator>::empty (3) - std::forward_list<T,Allocator>::empty
- std::forward_list<T,Allocator>::end,std::forward_list<T,Allocator>::cend (3) - std::forward_list<T,Allocator>::end,std::forward_list<T,Allocator>::cend
- std::forward_list<T,Allocator>::erase_after (3) - std::forward_list<T,Allocator>::erase_after
- std::forward_list<T,Allocator>::forward_list (3) - std::forward_list<T,Allocator>::forward_list
- std::forward_list<T,Allocator>::front (3) - std::forward_list<T,Allocator>::front
- std::forward_list<T,Allocator>::get_allocator (3) - std::forward_list<T,Allocator>::get_allocator
- std::forward_list<T,Allocator>::max_size (3) - std::forward_list<T,Allocator>::max_size
- std::forward_list<T,Allocator>::merge (3) - std::forward_list<T,Allocator>::merge
- std::forward_list<T,Allocator>::operator= (3) - std::forward_list<T,Allocator>::operator=
- std::forward_list<T,Allocator>::pop_front (3) - std::forward_list<T,Allocator>::pop_front
- std::forward_list<T,Allocator>::push_front (3) - std::forward_list<T,Allocator>::push_front
- std::forward_list<T,Allocator>::remove,remove_if (3) - std::forward_list<T,Allocator>::remove,remove_if
- std::forward_list<T,Allocator>::resize (3) - std::forward_list<T,Allocator>::resize
- std::forward_list<T,Allocator>::reverse (3) - std::forward_list<T,Allocator>::reverse
- std::forward_list<T,Allocator>::sort (3) - std::forward_list<T,Allocator>::sort
- std::forward_list<T,Allocator>::splice_after (3) - std::forward_list<T,Allocator>::splice_after
- std::forward_list<T,Allocator>::swap (3) - std::forward_list<T,Allocator>::swap
- std::forward_list<T,Allocator>::unique (3) - std::forward_list<T,Allocator>::unique
- std::forward_list<T,Allocator>::~forward_list (3) - std::forward_list<T,Allocator>::~forward_list
- std::forward_list (3) - std::forward_list