Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in std-ranges

Under what circumstances is ref_view{E} ill-formed and subrange{E} not?

c++ c++20 range-v3 std-ranges

Can trim of a string be done inplace with C++20 ranges?

c++ c++20 std-ranges

O(1) find/contains in std::ranges::views::iota

c++ c++20 std-ranges c++23

If we have ranges::zip and views::transform, why do we need ranges::zip_transform?

c++ tuples idioms std-ranges

Sorting two arrays using C++23 zip view

c++ std-ranges c++23

Why doesn't std::execution::par launch threads with std::views::iota iterators

Why do I get an error: cannot decompose inaccessible member when compiling this code using std::views::chunk?

c++ c++20 std-ranges c++23

can ranges split be used with a predicate?

c++ split c++20 std-ranges

Failing to create a std::ranges::iota_view with value and bound

c++ std-ranges

Why doesn't ranges provide a type erased view for non-contiguous ranges?

Can I use std::generator in a C++20 project to generate a range view?

Is there any standard functionality for creating a flattened view of a map with a container as the mapped_type?

c++ c++20 std-ranges

Why std::ranges::view_interface using CRTP

c++ c++20 range-v3 std-ranges

Why doesn't this code using std::ranges::find on an std::views::zip compile?

c++ std std-ranges c++23

Bug or compilation error with some compilers for simple std::ranges code

c++ c++20 std-ranges

When should i use range adaptors vs range algorithms?

c++ c++20 std-ranges

How to use std::views::transform on a vector?

c++ c++20 std-ranges