Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

Do C++20 Concepts replace other forms of constraints?

How to hide implementation details in C++ modules?

C++20 Concepts: Explicit instantiation of partially ordered constraints for member functions

Why are copy-capturing lambdas not default DefaultConstructible in c++20

c++ c++20

asio How to change the executor inside an awaitable?

Eligible special member functions and triviality

c++ language-lawyer c++20

Given two objects of different types and their relative location in memory, can I derive a pointer to one object from a pointer to the other?

Why does [[no_unique_address]] have no effect on public data members?

c++ layout c++20

Why does the upcoming Ranges library not support container initialization from a range?

c++ iterator std c++20

Confusing orderings in C++ with memory_order_acq_rel vs memory_order_seq_cst

Parsing error with dependent template type

c++ language-lawyer c++20

Template specialization failure while using decltype in template type

How do I check whether a type is derived from vector / list / deque?

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

C++20 converting between string/u8string and string_view/u8string_view

c++ c++17 c++20

Does changing private module fragments cause a recompilation of a module?

c++ c++20 c++-modules

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