Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Explicit destructor call with decltype

Is it legal to check whether the address of a subobject lies within the bounds of a containing object

Can I use C++14 in a library meant for C++11 client applications?

c++ c++11 c++14

Return forwarding reference parameters - Best practice

store many of relation 1:1 between various type of objects : decoupling & high performance

Passing a lambda with moved capture to function

c++ lambda c++14

Is (or will be) the use of familiar template syntax in lambda expressions allowed?

Throwing an rvalue

Non Deduced context for a non type parameter

constexpr reference to a variable of an anonymous struct

c++ c++11 c++14 unions c++17

Don't use sizeof for T if T is a function

Is it possible to turn a constexpr std::array into a std::integer_sequence?

c++ templates c++14

When should I std::forward a function call?

Trait to check if some specialization of template class is base class of specific class

constexpr void function rejected

Why does "return (str);" deduce a different type than "return str;" in C++?

Simulating `continue;`, `break;` in lambda-based foreach loops

c++ loops lambda c++14

When and how to use a template literal operator?

Abstract class and unique pointer

Condition variable and shared mutex

c++ multithreading c++14