set::rend (STL/CLR)

Designates the end of the reversed controlled sequence.

    reverse_iterator rend();

Remarks

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

Example

// cliext_set_rend.cpp 
// compile with: /clr 
#include <cliext/set> 
 
typedef cliext::set<wchar_t> Myset; 
int main() 
    { 
    Myset c1; 
    c1.insert(L'a'); 
    c1.insert(L'b'); 
    c1.insert(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 
    Myset::reverse_iterator rit = c1.rend(); 
    --rit; 
    System::Console::WriteLine("*-- --rend() = {0}", *--rit); 
    System::Console::WriteLine("*--rend() = {0}", *++rit); 
    return (0); 
    } 
 
 a b c
*-- --rend() = b
*--rend() = a

Requirements

Header: <cliext/set>

Namespace: cliext

See Also

Reference

set (STL/CLR)

set::begin (STL/CLR)

set::end (STL/CLR)

set::rbegin (STL/CLR)