std::forward_list (3) - Linux Manuals
std::forward_list: std::forward_list
NAME
std::forward_list - std::forward_list
Synopsis
Defined in header <forward_list>
template<
class T, (1) (since C++11)
class Allocator = std::allocator<T>
> class forward_list;
namespace pmr {
template <class T> (2) (since C++17)
using forward_list = std::forward_list<T, std::pmr::polymorphic_allocator<T>>;
}
std::forward_list is a container that supports fast insertion and removal of elements from anywhere in the container. Fast random access is not supported. It is implemented as a singly-linked list and essentially does not have any overhead compared to its implementation in C. Compared to std::list this container provides more space efficient storage when bidirectional iteration is not needed.
Adding, removing and moving the elements within the list, or across several lists, does not invalidate the iterators currently referring to other elements in the list. However, an iterator or reference referring to an element is invalidated when the corresponding element is removed (via erase_after) from the list.
std::forward_list meets the requirements of Container (except for the size member function and that operator=='s complexity is always linear), AllocatorAwareContainer and SequenceContainer.
Template parameters
T - The requirements that are imposed on the elements depend on the actual operations performed on the container. Generally, it is required that element type is a complete type and meets the requirements of Erasable, but many member functions impose stricter requirements. (until C++17)
Allocator - An allocator that is used to acquire/release memory and to construct/destroy the elements in that memory. The type must meet the requirements of Allocator. The behavior is undefined if Allocator::value_type is not the same as T.
Member types
Member type Definition
value_type T
allocator_type Allocator
size_type Unsigned integer type (usually std::size_t)
difference_type Signed integer type (usually std::ptrdiff_t)
reference value_type&
const_reference const value_type&
pointer std::allocator_traits<Allocator>::pointer
const_pointer std::allocator_traits<Allocator>::const_pointer
iterator LegacyForwardIterator
const_iterator Constant LegacyForwardIterator
Member functions
constructor (public member function)
destructor (public member function)
operator= (public member function)
assign (public member function)
get_allocator (public member function)
Element access
front (public member function)
Iterators
before_begin (public member function)
cbefore_begin
begin returns an iterator to the beginning
cbegin (public member function)
end_ returns an iterator to the end
cend (public member function)
Capacity
empty (public member function)
max_size (public member function)
Modifiers
clear (public member function)
insert_after (public member function)
emplace_after (public member function)
erase_after (public member function)
push_front (public member function)
emplace_front (public member function)
pop_front (public member function)
resize (public member function)