Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Why does proposed `std::shared_ptr::operator[]` take `std::ptrdiff_t` as an argument

c++ c++17

Why does clang, using libstdc++, delete the explicitly defaulted constructor on a type containing std::optional?

Reinterpret cast a template non-type parameter: clang c++14 vs c++1z

c++ clang c++14 c++17

Can the std::vector range constructor invoke explicit conversions?

c++ c++17

Since C++17 supports shared_ptr of array, does this mean that an explicit deleter for T[] is no longer required in both ctor and reset?

c++ arrays shared-ptr c++17

Why do structured bindings depend on tuple_element?

__PRETTY_FUNCTION__ in constant expression

Class template argument deduction and default template parameters

Does an in-class friend of a nested class have access to outer class members?

Expanding parameter pack as part of lambda capture in fold expression - gcc vs clang [duplicate]

C++17 Partial Deduction Guide

Why Sortable concept requires totally ordered value type, while std::sort only requires "less than" comparable?

c++ c++17 c++-concepts

Trouble with storing a type tag when implementing an std::variant-like class

c++ templates variant c++17

Avoiding extra move in make_unique/make_shared/emplace/etc for structures that use aggregate initialization

c++ c++17

When is std::string_view::operator== really constexpr?

c++ gcc c++17 libc++

Can constructor template cause ambiguity in the c++17 parameter deduction of class template

Union of layout-compatible types

Is a lambda in a default template parameter considered part of the immediate context?

c++ language-lawyer c++17

Can I use std::transform in place with a parallel execution policy?

Is GCC9 avoiding valueless state of std::variant allowed?