Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

Why must the return type of a coroutine be move-constructible?

c++ coroutine c++20

Why does std::copyable subsume std::movable?

c++ copy move-semantics c++20

Compare std::variant with int using C++20 <=> is not a constant expression

c++ c++17 c++20 std-variant

Constructing a vector of string_views from an initializer_list

c++ gcc c++20

An issue about instantiation context

c++ language-lawyer c++20

Why does std::totally_ordered<float> return true?

c++ language-lawyer 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?