Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in std-ranges

What are the incentive of some std::ranges::XXX_n? [duplicate]

What is a concrete use case of std::ranges::partial_sort_copy with *different* projections?

How would you implement a lazy "range factory" for C++20 ranges that just calls a generator function?

c++ c++20 std-ranges

Why chained range views sometimes increase in size?

c++ c++20 std-ranges

Does std::ranges::views::enumerate use the wrong type for indexing on GCC?

How to define a C++ concept for a range to a std::pair of reference wrappers?

Why isn't a transform_view a borrowed_range?

c++ std-ranges

How to lexicographically compare two vectors in reverse order?

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?