reverse |
Functions | |
template<class BidirectionalRange > | |
void | reverse (BidirectionalRange &range) |
template<class BidirectionalRange , class OutputIterator > | |
void | reverse_copy (BidirectionalRange &range, OutputIterator result) |
template<class BidirectionalRange , class OutputIterator > | |
void | reverse_copy (const BidirectionalRange &range, OutputIterator result) |
template<typename I > | |
std::pair< I, I > | reverse_until (I f, I m, I l) |
Detailed Description
- See also:
- STL documentation for reverse
- STL documentation for reverse_copy
Function Documentation
void adobe::reverse | ( | BidirectionalRange & | range ) |
reverse implementation
Definition at line 96 of file reverse.hpp.
void adobe::reverse_copy | ( | BidirectionalRange & | range, |
OutputIterator | result | ||
) |
reverse implementation
Definition at line 107 of file reverse.hpp.
void adobe::reverse_copy | ( | const BidirectionalRange & | range, |
OutputIterator | result | ||
) |
reverse implementation
Definition at line 118 of file reverse.hpp.
std::pair<I, I> adobe::reverse_until | ( | I | f, |
I | m, | ||
I | l | ||
) |
reverse implementation
Definition at line 130 of file reverse.hpp.