Open In App

forward_list::cend() in C++ STL with Example

Last Updated : 21 Jun, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

forward_list::cend() is a function in C++ STL which returns a constant iterator pointing to the past-the-last element of the forward_list. The iterator returned by the function does not point to any element in the container, but to the position followed by the last element of the forward list container. The iterator returned by the function points to constant content. Since the iterator itself is not constant it can be increased or decreased or modified but it cannot be used to modify its content even if the forward list is not constant. Since the iterator does not point to any element of the forward list, it cannot be dereferenced in any case. Syntax:

forward_list_name.cend()

Parameters: The function does not take any parameter. Return Value: The function returns an iterator pointing to the past-the-end element of the forward list container. The following programs illustrates the use of the forward_list::cend() function: 

CPP




// CPP program to illustrate
// forward_list::cend();
 
#include <forward_list>
#include <iostream>
using namespace std;
 
int main()
{
 
    // Initializing the forward list
    forward_list<int> sample = { 7, 54, 47, 48 };
 
    // Display sample
    cout << "sample: ";
    for (auto it = sample.cbegin();
        it != sample.cend();
        it++)
        cout << *it << " ";
}


Output:

sample: 7 54 47 48

Time Complexity: O(1)

Auxiliary Space: O(1)


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads