Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

What is the difference between `std::default_initializable` and `std::is_default_constructible`?

c++ c++20

Is std::chrono::years storage really at least 17 bit?

c++ chrono c++20 libc++

Can C++ struct static member variables shadow non type template parameters?

Is it valid to create closure (lambda) objects using `std::bit_cast` in C++20?

Why isn't std::swap marked constexpr before C++20?

c++ c++11 constexpr c++20

Can spaceship operator be used in fold expressions?

using constexpr to return pointer

c++ c++20 constexpr

Function is not usable as a 'constexpr' function

c++ c++20

C++ 20 chrono: How to compare time_point with month_day?

c++ date c++20 chrono

Difference between std::atomic and std::condition_variable wait, notify_* methods

Empty braces magic in initializer lists

c++ c++20 initializer-list

Which is the best viable operator == function between these two declarations?

Is pointer arithmetic on allocated storage allowed since C++20?

Which part of the C++ standard prevents explicitly specifying this template's arguments?

c++ generic compile-time for loop

Why are span's array and std::array constructors different from its container constructors

c++ c++20 std-span

Forwarding to an Aggregate Initializer?

c++ c++17 c++20

How to use the <format> header

Can comparison operator be defaulted outside of class definition in C++20?

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

c++ c++20