Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in std-ranges

Invalid operands to binary expression when importing custom view from a module

Why does std::ranges::find_if return an iterator but std::ranges::find_last_if return a subrange?

c++ std std-ranges c++23

Possible ways to make this `cartesian_product_with_filter` function variadic?

How to reduce verbosity when splitting `std::string_view` by `std::views::split`?

c++ c++23 std-ranges

Tweaking clang-format for C++20 ranges pipelines

range parameter for any iterable input with properly convertible elements

How to make ranges::binary_search (heterogeneous search in particualar) work with references

c++ c++20 std-ranges

Am I misunderstanding how `std::views::cartesian_product` is supposed to work?

What am I missing in my custom std::ranges iterator?

c++ c++20 std-ranges

Why doesn't std::ranges::find compile while std::find works fine?

c++ c++20 std-ranges

Passing std::ranges::views as parameters in C++20

c++ c++20 std-ranges

Why can't C++23's enumerate_view (unlike Range-v3's namesake) be piped into Range-v3's to_vector?

c++ c++23 std-ranges range-v3

How to use iota_view for custom IntLike types?

c++ c++20 std-ranges iota

ranges::sort does not compile

What does the vertical pipe | mean in the context of c++20 and ranges?

Range concept for a specific type

How can I elegantly fill/initialize two (or more) ranges from a range containing pairs/tuples of elements?

c++ std-ranges c++23

Why does std::views::take_while() do so many function invocations? (even with `cache_latest`)

c++ std-ranges c++23 c++26