Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Will RVO happen when returning std::pair?

c++ c++11 std-pair rvo nrvo

Why do streams still convert to pointers in C++11?

c++ c++11 g++ std iostream

Can enum class be nested?

c++ c++11 enum-class

Understanding std::function and std::bind

c++ c++11 std-function stdbind

Is there anyway I can make a template<typename T> accept multiple values?

c++ templates c++11

Perfect forwarding for void and non-void returning functions

C++11 tuple performance

c++ c++11

C++11 template alias as template template argument leads to different type?

How to obtain a const qualified declval?

c++ c++11 constants decltype

How compute array size during compilation (without accepting pointers)?

VC++: Performance drop x20 when more threads than cpus but not under g++

signal on condition variable without holding lock

Best way to write constructor of a class who holds a STL container in C++11

c++11 constructor move

std::hash template partial specialization

When is a C++ expression well formed?

Emplacing in vector using default constructor

c++ c++11 vector emplace

Why can I use ostream cout in a lambda although it wasn't captured?

c++ c++11 lambda

C++11: Range-looping vector from the second element?

c++11 for-loop stdvector

SFINAE: std::enable_if as function argument

c++ templates c++11 sfinae

Is there any advantage to implementing functions as free functions rather than members in C++?

c++ class c++11 optimization