Vector::const_reverse_iterator (STL/CLR)
Typ konstantní zpětného iterační řízené posloupnosti..
typedef T4 const_reverse_iterator;
Poznámky
Popisuje typ objektu neurčený typ T4 , může sloužit jako konstantní zpětného iterační řízené posloupnosti.
Příklad
// cliext_vector_const_reverse_iterator.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 contents " a b c" reversed
cliext::vector<wchar_t>::const_reverse_iterator crit = c1.rbegin();
cliext::vector<wchar_t>::const_reverse_iterator crend = c1.rend();
for (; crit != crend; ++crit)
System::Console::Write(" {0}", *crit);
System::Console::WriteLine();
return (0);
}
Požadavky
Záhlaví: < cliext/vector >
Obor názvů: cliext