Skip to content

Add range-v3 #7824

@allanleal

Description

@allanleal

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/

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions