Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in std-ranges

Can can I make `std::ranges::views::elements` work with a range of my type

c++ c++20 std-ranges

Why can views::reverse transform a non-sized_range into a size_range?

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

How can I collect an istream_view into a container?

Why is const char[] a better match for std::ranges::range than for an explicit, const char* free overload, and how to fix it?

requirements for custom container type to use with views

c++ c++20 std-ranges

Detecting compile-time constantness of range size

Do C++ ranges support projections in views?

c++ c++20 std-ranges

C++20 ranges and sorting

c++ sorting c++20 std-ranges

Undefined behaviour on std::prev for transform-view

What is the difference between iterator_category and iterator_concept in C++20?

Use of 'auto [...] 'before deduction of 'auto' with recursive, concept-based function template

recursive application of C++20 range adaptor causes a compile time infinite loop

c++ stl c++20 std-ranges

Why does the C++20 range library have its own namespace?

c++ c++20 std-ranges

What should I do to make my container work with ranges?

c++ c++20 std-ranges

Why does the C++23 ranges adaptor require a callable object to be copy_­constructible?

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

Should c++ constraints be evaluated eagerly or lazily?

Vector initialisation using ranges vs lambda inline initialisation

c++ c++20 std-ranges

Why do std::ranges algorithms lack parallel overloads (taking an execution policy parameter)?