std::forward_list<T,Allocator>::swap (3) - Linux Manuals
std::forward_list<T,Allocator>::swap: std::forward_list<T,Allocator>::swap
Command to display std::forward_list<T,Allocator>::swap
manual in Linux: $ man 3 std::forward_list<T,Allocator>::swap
NAME
std::forward_list<T,Allocator>::swap - std::forward_list<T,Allocator>::swap
Synopsis
void swap( forward_list& other ); (since C++11)
(until C++17)
void swap( forward_list& other ) noexcept(/* see below */); (since C++17)
Exchanges the contents of the container with those of other. Does not invoke any move, copy, or swap operations on individual elements.
All iterators and references remain valid. It is unspecified whether an iterator holding the past-the-end value in this container will refer to this or the other container after the operation.
If std::allocator_traits<allocator_type>::propagate_on_container_swap::value is true, then the allocators are exchanged using an unqualified call to non-member swap. Otherwise, they are not swapped (and if get_allocator() != other.get_allocator(), the behavior is undefined). (since C++11)
Parameters
other - container to exchange the contents with
Return value
(none)
Exceptions
(none) (until C++17)
noexcept specification: (since C++17)
noexcept(std::allocator_traits<Allocator>::is_always_equal::value)
Complexity
Constant.
See also
std::swap(std::forward_list) specializes the std::swap algorithm
(function template)
(C++11)
Pages related to std::forward_list<T,Allocator>::swap
- 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>::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>::insert_after (3) - std::forward_list<T,Allocator>::insert_after
- 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>::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