Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Warning with automatic return type deduction: why do we need decltype when return defines the type anyway?

c++ c++11 c++14

Template function specialization for template class

"constexpr" in C++14

c++ c++11 c++14 constexpr

Compiler-deduced type for generic lambdas

Create alias for numeric array

c++ c++11 c++14

Why is a lambda not-movable if it captures a not-copiable object using std::move()?

c++ function lambda c++14 move

C++ Lambda Code Generation with Init Captures in C++ 14

c++ lambda c++14 move

Return type deduction in recursive function

c++ c++14

Get the type of the return value in C++

c++ types c++14 decltype

Which std types are guaranteed to be empty/null after being used as arg in move constructor

c++ c++11 c++14 move-semantics

Expand a type N times in template parameter

C++ Transform a std::tuple<A, A, A...> to a std::vector or std::deque

c++ tuples c++14

Can I place "non-static blocks" of code in class definitions?

decltype() variadic template base class

c++ c++11 c++14

C++14 using alias for is_same::value

c++ templates helper c++14 c++17

Will there be standardization of scope guard/scope exit idioms?

c++ c++14 c++17 scopeguard

Get function return type in template

c++ templates c++14

Warning: function uses 'auto' type specifier without trailing return type

Why does gcc generate a memmove instead of a memcpy for copying a std::vector<>?

Generating a sequence of type T at compile time

c++ c++14 callable