Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in std-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

Creating a "double zip" view in C++23

c++ std-ranges c++23

Why use std::ranges algorithms over regular algorithms?

c++ algorithm stl std-ranges

Why does std::filter_view not have a way to eagerly evaluate it and convert it to view whose begin in const?

c++ c++20 std-ranges

Why can't I pass a std::views::join by const reference?

c++ c++20 std-ranges

Are view iterators valid beyond the lifetime of the view?

error: 'sort' is not a member of 'std::ranges'; did you mean 'std::sort'?

c++ c++20 std-ranges g++10

stack-use-after-return with projection to a member inside a ranges pipeline [duplicate]

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

Why does `zip_view` not support `output_range`?

c++ std-ranges c++23

C++20 and on: Which views/algorithms can be piped?

c++ std-ranges

Why does GCC copy object for each comparison in `std::ranges::max`?

c++ gcc stl clang std-ranges