std::forward_list::reverse
From Cppreference
< cpp | container | forward list
void reverse();
|
(C++11 feature) | |
Reverses the order of the elements in the container. No references or iterators become invalidated.
Contents |
[edit] Parameters
(none)
[edit] Return value
(none)
[edit] Example
This section is incomplete |
[edit] Complexity
linear in the size of the container
[edit] See also
|
sorts the elements (public member function) |