list::const_reverse_iterator (STL/CLR)

The type of a constant reverse iterator for the controlled sequence..

    typedef T4 const_reverse_iterator;

Remarks

The type describes an object of unspecified type T4 that can serve as a constant reverse iterator for the controlled sequence.

Example

// cliext_list_const_reverse_iterator.cpp 
// compile with: /clr 
#include <cliext/list> 
 
int main() 
    { 
    cliext::list<wchar_t> c1; 
    c1.push_back(L'a'); 
    c1.push_back(L'b'); 
    c1.push_back(L'c'); 
 
// display contents " a b c" reversed 
    cliext::list<wchar_t>::const_reverse_iterator crit = c1.rbegin(); 
    cliext::list<wchar_t>::const_reverse_iterator crend = c1.rend(); 
    for (; crit != crend; ++crit) 
        System::Console::Write(" {0}", *crit); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
 c b a

Requirements

Header: <cliext/list>

Namespace: cliext

See Also

Reference

list (STL/CLR)

list::reverse_iterator (STL/CLR)