std::list<T,Allocator>::begin,std::list<T,Allocator>::cbegin (3) - Linux Manuals
std::list<T,Allocator>::begin,std::list<T,Allocator>::cbegin: std::list<T,Allocator>::begin,std::list<T,Allocator>::cbegin
Command to display std::list<T,Allocator>::begin,std::list<T,Allocator>::cbegin
manual in Linux: $ man 3 std::list<T,Allocator>::begin,std::list<T,Allocator>::cbegin
NAME
std::list<T,Allocator>::begin,std::list<T,Allocator>::cbegin - std::list<T,Allocator>::begin,std::list<T,Allocator>::cbegin
Synopsis
iterator begin(); (until C++11)
iterator begin() noexcept; (since C++11)
const_iterator begin() const; (until 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 <list>
#include <string>
int main()
{
std::list<int> ints {1, 2, 4, 8, 16};
std::list<std::string> fruits {"orange", "apple", "raspberry"};
std::list<char> empty;
// Sums all integers in the 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 list fruits, without checking if there is one.
std::cout << "First fruit: " << *fruits.begin() << "\n";
if (empty.begin() == empty.end())
std::cout << "list 'empty' is indeed empty.\n";
}
Output:
Sum of ints: 31
First fruit: orange
list 'empty' is indeed empty.
See also
end_ returns an iterator to the end
cend (public member function)
Pages related to std::list<T,Allocator>::begin,std::list<T,Allocator>::cbegin
- std::list<T,Allocator>::back (3) - std::list<T,Allocator>::back
- std::list<T,Allocator>::assign (3) - std::list<T,Allocator>::assign
- std::list<T,Allocator>::clear (3) - std::list<T,Allocator>::clear
- std::list<T,Allocator>::emplace (3) - std::list<T,Allocator>::emplace
- std::list<T,Allocator>::emplace_back (3) - std::list<T,Allocator>::emplace_back
- std::list<T,Allocator>::emplace_front (3) - std::list<T,Allocator>::emplace_front
- std::list<T,Allocator>::empty (3) - std::list<T,Allocator>::empty
- std::list<T,Allocator>::end,std::list<T,Allocator>::cend (3) - std::list<T,Allocator>::end,std::list<T,Allocator>::cend
- std::list<T,Allocator>::erase (3) - std::list<T,Allocator>::erase
- std::list<T,Allocator>::front (3) - std::list<T,Allocator>::front
- std::list<T,Allocator>::get_allocator (3) - std::list<T,Allocator>::get_allocator
- std::list<T,Allocator>::insert (3) - std::list<T,Allocator>::insert
- std::list<T,Allocator>::list (3) - std::list<T,Allocator>::list
- std::list<T,Allocator>::max_size (3) - std::list<T,Allocator>::max_size
- std::list<T,Allocator>::merge (3) - std::list<T,Allocator>::merge
- std::list<T,Allocator>::operator= (3) - std::list<T,Allocator>::operator=
- std::list<T,Allocator>::pop_back (3) - std::list<T,Allocator>::pop_back
- std::list<T,Allocator>::pop_front (3) - std::list<T,Allocator>::pop_front
- std::list<T,Allocator>::push_back (3) - std::list<T,Allocator>::push_back
- std::list<T,Allocator>::push_front (3) - std::list<T,Allocator>::push_front
- std::list<T,Allocator>::rbegin,std::list<T,Allocator>::crbegin (3) - std::list<T,Allocator>::rbegin,std::list<T,Allocator>::crbegin
- std::list<T,Allocator>::remove,remove_if (3) - std::list<T,Allocator>::remove,remove_if
- std::list<T,Allocator>::rend,std::list<T,Allocator>::crend (3) - std::list<T,Allocator>::rend,std::list<T,Allocator>::crend
- std::list<T,Allocator>::resize (3) - std::list<T,Allocator>::resize
- std::list<T,Allocator>::reverse (3) - std::list<T,Allocator>::reverse
- std::list<T,Allocator>::size (3) - std::list<T,Allocator>::size
- std::list<T,Allocator>::sort (3) - std::list<T,Allocator>::sort
- std::list<T,Allocator>::splice (3) - std::list<T,Allocator>::splice