Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

How to initialize a matrix ONCE in a constexpr constructor?

c++ c++20

Why can a `constexpr` function produce different results at compile- and run-time?

Must aggregate field constructor be public to use aggregate initialization in C++?

C++ constexpr functions with dynamic memory allocations

c++ c++20

Initializing std::vector with ranges library

c++ c++20

Constructing a string_view from a range of chars

c++ c++20 string-view

Overloading functions with concepts

is constexpr algorithm really useful, when iterator (input parameters) are not constexpr generally?

c++ c++20

Situation with `restrict` keyword/attribute in C++ standard

What's the relationship between C++ "concept" and duck typing?

Will modules in c++20 reduce compile time compared to traditional header-files? [closed]

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

Use of 'auto [...] 'before deduction of 'auto' with recursive, concept-based function template

Equivalence between function templates and abbreviated function templates

Overloading of hidden friends by differences only in (mutually exclusive) requires-clauses: legal or an ODR-violation?

Why isn't this class specialization using a concept accepted?

Why is `std::is_constant_evaluated()` false for this constant-initialized variable?

c++ language-lawyer c++20

recursive application of C++20 range adaptor causes a compile time infinite loop

c++ stl c++20 std-ranges

What's so controversial about AFTs (Abbreviated Function Templates)?

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

Does Visual Studio 2019 v16.3.9 fully support C++20?

In a nested requirement, why use `requires bool_constant<X>::value;` instead of `requires X;`?

c++ c++20