Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

How to make span of spans

c++ c++20 std-span

Piecewise initialisation of std::array

c++ c++20 stdarray

Why is a class trivially copyable with all private special member functions? [duplicate]

How to apply a concept to a trailing return type

Does std::set work correctly with a type that compares as std::partial_ordering?

C++ 20: trying to return std::ranges::view from a function

c++ c++20 std-ranges

implicit object creation by unsigned char[] - Is it legal to reinterpret_cast to implicit object? (P0593)

c++ language-lawyer c++20

Can't compare two ranges

c++ c++20

missing `typename` in gcc 11.1.0 ranges header

c++ c++20 libstdc++ std-ranges

How to use concepts to pass an argument to a class method?

requires clause for a non-template member function in a template class

C++20: How to wait on an atomic object with timeout?

`requires` expression is evaluated to false in a nested template, but code is still compiled

Why can't a placement-new expression be a constant expression?

warning: operator delete called on unallocated object

What is the reason for std::memcpy not being constexpr even in C++20?

c++ constexpr c++20

Using C-style arrays in std::vector - MSVC bug?

How does overload resolution select from multiple prospective destructors?