|
coveo::linq
Implementation of .NET-like LINQ operators in C++
|
Reverses elements in a sequence. More...
Functions | |
| template<typename = void> | |
| auto | coveo::linq::reverse () -> detail::reverse_impl<> |
| Reverses elements in sequence. More... | |
The reverse operator, as its name implies, scans a sequence a produces a new sequence in which the elements are reversed.
.NET equivalent: Reverse
| auto coveo::linq::reverse | ( | ) | -> detail::reverse_impl<> |
Produces a new sequence in which elements in the source sequence are in reverse order.
Use like this:
1.8.15