GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::forward_list::before_begin,cbefore_begin(3) C++ Standard Libary std::forward_list::before_begin,cbefore_begin(3)

std::forward_list::before_begin,cbefore_begin - std::forward_list::before_begin,cbefore_begin


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().


(none)


Iterator to the element before the first element.


Constant.


begin returns an iterator to the beginning
cbegin (public member function)
(C++11)
end returns an iterator to the end
cend (public member function)
(C++11)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.