Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in std-ranges

how to iterate over "enumerated zip" of 2 containers in C++23?

c++ std-ranges c++23

Is there a class to store a generic range in std::ranges?

Using C++20 Ranges to Avoid Loops

c++ c++20 std-ranges

Parallel for loop with std::for_each and std::views::iota

Regarding the pause-resume data loss in MSVC std::experimental::generator

How to get the type of the values in a C++20 std::ranges range?

How to sort a vector using std::views C++20 feature?

c++ stl c++20 std-ranges

How can I specify the return type of a function that returns the result of a ranges pipeline? [duplicate]

c++ c++20 std-ranges

why does ranges::view_interface<T>::size require a move constructor

Why do `std::views::adjacent` iterators increment all underlying iterators instead of using a more performant shift?

c++ iterator c++23 std-ranges

Structured binding for std::views::enumerate of std::map [duplicate]

C++23 std::ranges::enumerate with custom index type

c++ std-ranges c++23

Range pipeline drops typedef used for formatting style

Generating unique random numbers with C++ ranges

c++ c++20 std-ranges

A c++20 range adaptor whose produced values are iterators to the underlying range

How to create a view over a range that always picks the first element and filters the rest?

c++ c++20 std-ranges

Ranges filter_view::iterator element modification results in UB

Unexpected result with `std::views::transform`, probably caused by "unnamed temporary"

c++ gcc clang c++20 std-ranges

Iterating over first n elements of a container - std::span vs views::take vs ranges::subrange

c++ c++20 std-ranges