Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Deleting map elements in a range-based loop

std::ranges::copy will not accept std::vector in visual studio

Using std::ranges algorithms with custom containers and iterators

What is the category of iota_view iterator?

c++ c++20 std-ranges

What are the incentive of some std::ranges::XXX_n? [duplicate]

What is a concrete use case of std::ranges::partial_sort_copy with *different* projections?

How would you implement a lazy "range factory" for C++20 ranges that just calls a generator function?

c++ c++20 std-ranges

Why chained range views sometimes increase in size?

c++ c++20 std-ranges

Does std::ranges::views::enumerate use the wrong type for indexing on GCC?

How to define a C++ concept for a range to a std::pair of reference wrappers?

Why isn't a transform_view a borrowed_range?

c++ std-ranges