Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement reverse operator #17

Closed
1 task
bartop opened this issue Nov 28, 2017 · 0 comments
Closed
1 task

Implement reverse operator #17

bartop opened this issue Nov 28, 2017 · 0 comments
Assignees
Milestone

Comments

@bartop
Copy link
Owner

bartop commented Nov 28, 2017

Operator reverse

Input

Enumerable.

Output

Enumerable with reversed order of elements.

Example

const auto input = { 1, 2, 3, 4, 5, 6 };
//sum example
const auto output = input | reverse;
//output should contain { 6, 5, 4, 3, 2, 1 };

Remarks

This feature depends on implementation of:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant