-
Notifications
You must be signed in to change notification settings - Fork 251
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
Ranges support and begin/end members #873
Conversation
Example: auto v = winrt::single_threaded_vector<int>({1, 2, 3});
for (const auto i : v | std::views::reverse)
{
std::cout << i;
} |
I'm actually thinking it might be possible to enable ranges for |
With my latest commit, every // prints "1 3 5 7"
auto v = winrt::single_threaded_vector<int>({ 1, 2, 3, 4, 5, 6, 7 });
winrt::Windows::Foundation::Collections::IIterable<int> c(v);
for (int i : c | std::views::filter([](int i) { return i % 2 != 0; }))
{
std::cout << i << ' ';
} |
Thanks for the contribution! @DefaultRyan can you take a look? |
I should be able to get to it in a day or two. I haven't been doing my homework reading up on the details of these newfangled ranges, but from what I've heard, this should be exciting. |
I'm not quite convinced. Which concept is it that needs to be satisfied? |
|
To be clear, it's
Making |
Any update on this? I'd like to start using ranges in my projects but this is a pretty big blocker. |
@DefaultRyan will hopefully get a chance to take a look soon. I had a quick look and the obvious missing piece here is good test coverage. |
I was thinking the same but I'm not sure how to proceed: do I create a brand new test project with C++20 or upgrade the existing one to C++20? |
Yes, we don't want to destabilize the existing tests. Probably best to create a new test project by copying "test", removing the existing tests, and then flipping it to C++20. Obviously, all of the existing tests should run unchanged. |
Just added a few unit tests, and made sure they pass locally. The IDE says some constraints aren't satisfied when editing the ranges.cpp file but it builds and runs, so it seems like some EDG bugs that should be reported. |
Thanks Charles, I had a quick look and this is sufficiently disruptive that I'll need to run a CI build to validate the changes. Unfortunately I can only do so against branches on https://github.com/microsoft/cppwinrt - so if you don't mind please push a branch directly and reopen a PR. I have given you Write access in order to do that. I would also do a complete build and test before pushing as I did notice a few issues with some of the other test projects indicating regressions. |
I pushed my current changes to |
This enables WinRT collections to be used with C++20 ranges.
I added member
begin
/end
because the existing solution (ADL-only) doesn't work withstd::ranges::begin
's ADL resolution - it defines a deleted templatebegin
, and this template is a better match than C++/WinRT's ADL functions.Fixes #807