-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Closed
Description
Adding the range-v3 library to conda-forge would be very welcome. Example:
using namespace ranges;
std::vector<int> vi{1,2,3,4,5,6,7,8,9,10};
auto rng = vi | view::remove_if([](int i){return i % 2 == 1;})
| view::transform([](int i){return std::to_string(i);});
// rng == {"2","4","6","8","10"};I can help as much as possible, but currently not very familiar with the entire process.
https://github.com/ericniebler/range-v3
https://ericniebler.github.io/range-v3/
Reactions are currently unavailable