std::list<T,Allocator>::append_range

From cppreference.com
< cpp‎ | container‎ | list

 
 
 
 
template< container-compatible-range<T> R >
void append_range( R&& rg );
(since C++23)

Inserts copies of elements in rg before end() in non-reversing order. Each iterator in the range rg is dereferenced exactly once.

Parameters

rg - a container compatible range, that is, an input_range whose elements are convertible to T.
Type requirements
-
T must be EmplaceConstructible into list from *ranges::begin(rg). Otherwise, the behavior is undefined.

Return value

(none)

Complexity

Linear in size of rg.

Notes

Feature-test macro Value Std Comment
__cpp_lib_containers_ranges 202202L (C++23) Ranges-aware construction and insertion

Example

#include <algorithm>
#include <cassert>
#include <list>
#include <vector>
 
int main()
{
    auto head = std::list{1, 2, 3, 4};
    const auto tail = std::vector{-5, -6, -7};
    head.append_range(tail);
    assert(std::ranges::equal(head, std::list{1, 2, 3, 4, -5, -6, -7}));
}

See also

adds a range of elements to the beginning
(public member function)
inserts a range of elements
(public member function)
adds an element to the end
(public member function)
constructs an element in-place at the end
(public member function)