Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

How can std::vector be converted to std::span?

c++ c++20

Will there be a concept for arithmetic types in C++ standard library?

Ramifications of C++20 requiring two's complement

C++20 concepts: int not swappable_with int

c++ c++20 c++-concepts

Breaking change in C++20 or regression in clang-trunk/gcc-trunk when overloading equality comparison with non-Boolean return value?

std::bit_cast with std::array

c++ c++20 type-punning

Simple example where [[likely]] and [[unlikely]] affect program assembly?

Is the const overload of begin/end of the range adapters underconstrained?

When do temporaries passed to coroutines get destroyed?

c++ c++20 c++-coroutine

Overloaded function templates that differ only in their return types in C++

Implicitly capture const variable in a template lambda with no capture-default specified

Legitimate appearances of <=> in pre-c++20 code

What does std::make_unique_for_overwrite() do vis-a-vis std::make_unique()?

c++ smart-pointers c++20

How to use c++20 modules with GCC?

c++ c++20

Is there a reason why implementations allow instantiation of std::complex with unsupported types

What is std::jthread in c++20?

c++ multithreading c++20

How can I use C++20 std::format?

Why does the C++ standard handle file seeking the way it does?

Implementing operator<=> for optional<T>

Can a concept evaluation depend on where it is evaluated?