Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in std-ranges

C++ 23 range piping with polymorphic behavior experiment

c++ std-ranges c++23

Is it possible to construct a `std::span` from a view in C++20?

c++ c++20 std-ranges std-span

Get projected value from std::ranges algorithms

c++ c++20 std-ranges

Does c++20 ranges have any view functions that do not return value?

c++ c++20 std-ranges

Do C++20 `std::views` store copies or references to their input ranges?

How to sum a std::range?

c++ c++20 std-ranges

How to write a C++20 function accepting a range with both T and const T?

Using zip_view piped into a filter_view

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

How do I reuse a C++23 `std::generator` instance as a range in multiple range expressions?

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

Why is it not allowed to create a view for `std::owning_view`?

c++ c++20 std-ranges

How to use C++ std::ranges to replace substring in string?

How to find min element using std::ranges::min in C++

c++ std-ranges

Why do std range algorithms return std::ranges::dangling for rvalue arguments instead of... well, just working?

c++ c++20 std-ranges

Why doesn't std::ranges::upper_bound accept heterogenous comparing?

Compilers disagree on accepting this view::keys code

c++ c++20 std-ranges

Projecting on a std::map with std::ranges::min

c++ c++20 std-ranges

Is there a move-or-copy equivalent of std::forward for perfect forwarding in std::ranges?