list::reverse (STL/CLR)
Reverses the controlled sequence.
void reverse();
Remarks
The member function reverses the order of all elements in the controlled sequence. You use it to reflect a list of elements.
Example
// cliext_list_reverse.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 initial contents " a b c"
for each (wchar_t elem in c1)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
// reverse and redisplay
c1.reverse();
for each (wchar_t elem in c1)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
return (0);
}
a b c c b a
Requirements
Header: <cliext/list>
Namespace: cliext