Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

How do I use member functions to a standard library ranges operation

c++ c++20 std-ranges

How to pass a pointer argument to std::format?

c++ formatting std c++20

C++20 Designated Initializers char[]

Is `std::format` vulnerable to format string attack? How to mitigate it?

Why do floating-point numbers print without decimal unless std::fixed and std::setprecision are used?

Keeping consteval-ness of function arguments

std::is_constant_evaluated() and const variables

c++ c++20 constexpr

Does there exist a ranges::views::group_by counterpart that takes into account all elements, as opposed to just contiguous ones?

c++ c++20 range-v3 std-ranges

Initializing a std::barrier with a class member function

Template deduction for template aliasing with default value

How to generate parameter packs via meta-programming?

How do I properly declare a template friend operator overload to a template class without defining it inline

c++ templates c++20 friend

Something like std::integral_constant but with auto template argument in std C++20 library?

Multiple definition error when importing c++23 standard library module in multiple files

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

c++ recursive macro wont compile on MSVC?

c++ c++20 preprocessor

why does this c++ code snippet compile with std=c++17 but fails to compile with std=c++20? [duplicate]

How to add common functionalities to structs by way of inheritance without having to explicitly initialize the base struct?

c++ c++20

How to satisfy totally_ordered for a custom type without spaceship comparison operator (ranges::is_sorted, ranges::sort)

c++ c++20 std-ranges

Why does std::equality_comparable not work for std::vector

How to understand the changes to sequentially-consistent ordering in C++20?