std::forward_list<T,Allocator>::begin,std::forward_list<T,Allocator>::cbegin (3) - Linux Manuals
std::forward_list<T,Allocator>::begin,std::forward_list<T,Allocator>::cbegin: std::forward_list<T,Allocator>::begin,std::forward_list<T,Allocator>::cbegin
Command to display std::forward_list<T,Allocator>::begin,std::forward_list<T,Allocator>::cbegin
manual in Linux: $ man 3 std::forward_list<T,Allocator>::begin,std::forward_list<T,Allocator>::cbegin
NAME
std::forward_list<T,Allocator>::begin,std::forward_list<T,Allocator>::cbegin - std::forward_list<T,Allocator>::begin,std::forward_list<T,Allocator>::cbegin
Synopsis
iterator begin() noexcept; (since C++11)
const_iterator begin() const noexcept; (since C++11)
const_iterator cbegin() const noexcept; (since C++11)
Returns an iterator to the first element of the container.
If the container is empty, the returned iterator will be equal to end().
range-begin-end.svg
Parameters
(none)
Return value
Iterator to the first element
Complexity
Constant
Example
// Run this code
#include <iostream>
#include <forward_list>
#include <string>
int main()
{
std::forward_list<int> ints {1, 2, 4, 8, 16};
std::forward_list<std::string> fruits {"orange", "apple", "raspberry"};
std::forward_list<char> empty;
// Sums all integers in the forward_list ints (if any), printing only the result.
int sum = 0;
for (auto it = ints.cbegin(); it != ints.cend(); it++)
sum += *it;
std::cout << "Sum of ints: " << sum << "\n";
// Prints the first fruit in the forward_list fruits, without checking if there is one.
std::cout << "First fruit: " << *fruits.begin() << "\n";
if (empty.begin() == empty.end())
std::cout << "forward_list 'empty' is indeed empty.\n";
}
Output:
Sum of ints: 31
First fruit: orange
forward_list 'empty' is indeed empty.
See also
end_ returns an iterator to the end
cend (public member function)
Pages related to std::forward_list<T,Allocator>::begin,std::forward_list<T,Allocator>::cbegin
- std::forward_list<T,Allocator>::before_begin,cbefore_begin (3) - std::forward_list<T,Allocator>::before_begin,cbefore_begin
- std::forward_list<T,Allocator>::assign (3) - std::forward_list<T,Allocator>::assign
- 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>::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>::swap (3) - std::forward_list<T,Allocator>::swap
- 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