Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

What is the ideal way to customize the separators and brackets for formatting ranges?

Can i use split_view with a delimiter that's comparable, but otherwise not related to the split range's value type?

c++ split c++20 std-ranges

Is using ranges in c++ advisable at all? [closed]

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

C++20's std::views::filter not filtering the view correctly

c++ filter g++ c++20 std-ranges

Is there a way in Range-v3 to prepend or append an element to a range/view?

how to use a vector of keys to filter values from a map and produce a set using c++ ranges syntax

Vectors do not satisfy std::ranges::contiguous_range in Eigen 3.4

Counting the number of present values in array of optionals with std::ranges