Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Why can pointers to non-static member functions not be used as a unary predicate for standard library algorithms?

using std::function::target correctly

c++ c++11 c++17

Is std::string_view trivially copyable?

c++ language-lawyer c++17

How std::shared_ptr is deallocated?

c++ c++17

Why can't the compiler deduce auto template parameter unless I add const?

Correct way of using invoke_result?

Structured bindings and tuple of references

c++ c++17

Where does the standard define that a volatile variable can change?

template function that deduces both containers and initializer_list-s

Why can a dependent name be considered as complete even if the actual type is not defined until the very end

Why does C++'s `variable template` not behave as expected?

Function template overload resolution, dependent and non-dependent parameters

Why does C++17 if statement with initializer not work as expected?

Why can't I construct optional<T> with an optional<S> (for S!=T)?

How does std::apply forward parameters without explicit std::forward?

Type of variables in structured binding

How to check if type is explicitly/implicitly constructible?

Is there a safe navigation operator for C++?

c++ c++17

`constexpr` variable "used in its own initializer": Clang vs. GCC

On what base fold expression of a parameter pack consisting of a single element is transformed into unparenthesized expression