We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is it possible to filter and reorder a parameter pack?
void foo(auto&&... args) { qoo(std::forward_as_tuple(std::forward<decltype(args)>(args)...) | std::views::filter(???) | std::views::reverse); }
The text was updated successfully, but these errors were encountered:
Yeah, that's possible with the previous version and the current version.
For the previous version - https://godbolt.org/z/v5qss7WE7 For the current version - https://godbolt.org/z/cqz9KEzra
Sorry, something went wrong.
No branches or pull requests
Is it possible to filter and reorder a parameter pack?
The text was updated successfully, but these errors were encountered: