Namespaces
Variants
Views
Actions

std::forward_list<T,Allocator>::before_begin, cbefore_begin

From cppreference.com
< cpp‎ | container‎ | forward list
Revision as of 13:55, 4 August 2023 by Space Mission (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 
 
 
 
iterator before_begin() noexcept;
(since C++11)
const_iterator before_begin() const noexcept;
(since C++11)
const_iterator cbefore_begin() const noexcept;
(since C++11)

Returns an iterator to the element before the first element of the container. This element acts as a placeholder, attempting to access it results in undefined behavior. The only usage cases are in functions insert_after(), emplace_after(), erase_after(), splice_after() and the increment operator: incrementing the before-begin iterator gives exactly the same iterator as obtained from begin()/cbegin().

Contents

[edit] Parameters

(none)

[edit] Return value

Iterator to the element before the first element.

[edit] Complexity

Constant.

[edit] Example

[edit] See also

returns an iterator to the beginning
(public member function) [edit]
returns an iterator to the end
(public member function) [edit]