vector::rbegin (STL/CLR)

Designates the beginning of the reversed controlled sequence.

    reverse_iterator rbegin();

Remarks

The member function returns a reverse iterator that designates the last element of the controlled sequence, or just beyond the beginning of an empty sequence. Hence, it designates the beginning of the reverse sequence. You use it to obtain an iterator that designates the current beginning of the controlled sequence seen in reverse order, but its status can change if the length of the controlled sequence changes.

Example

// cliext_vector_rbegin.cpp 
// compile with: /clr 
#include <cliext/vector> 
 
int main() 
    { 
    cliext::vector<wchar_t> c1; 
    c1.push_back(L'a'); 
    c1.push_back(L'b'); 
    c1.push_back(L'c'); 
 
// display initial contents " a b c" 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// inspect first two items in reversed sequence 
    cliext::vector<wchar_t>::reverse_iterator rit = c1.rbegin(); 
    System::Console::WriteLine("*rbegin() = {0}", *rit); 
    System::Console::WriteLine("*++rbegin() = {0}", *++rit); 
 
// alter first two items and reinspect 
    *--rit = L'x'; 
    *++rit = L'y'; 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
 a b c
*rbegin() = c
*++rbegin() = b
 a y x

Requirements

Header: <cliext/vector>

Namespace: cliext

See Also

Reference

vector (STL/CLR)

vector::begin (STL/CLR)

vector::end (STL/CLR)

vector::rend (STL/CLR)