Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Global variable in namespace - Values differ in threads

Accessing for_each iterator from lambda

State of C++11 standard support in libc++?

c++ c++11 libc++

Can intermixing std::'s and boost::'s ::bind and ::function cause problems?

c++ boost c++11 std

Why do arrays of const preferentially bind to const T& parameters instead of T&& parameters?

c++ c++11

Construct std::function with a constructor based on template

C++11 Lambda closure involving a stack variable by reference that leaves scope is allowed but getting undefined behavior?

c++ lambda c++11

Is it possible to define a C++11 variadic class template whose variadic parameter cardinality depends on an integer template parameter?

c++ templates c++11

Is there any performance gain if I use [this] instead of [=] in lambda functions?

c++ lambda c++11

Template function is_same in template classes

c++ types c++11 this

How to define a constant double at namespace scope with external linkage?

c++ c++11 constexpr

Nested Lambda Capture in C++

How standard is std::thread?

c++: alternative to 'std::is_fundamental'?

c++ c++11 typetraits

How to keep cv qualifier or reference in return type deduction in c++1y?

c++ c++11 c++14

Which data structure should i use for my purpose? [duplicate]

Checking the object type in C++11

c++ c++11 rtti typeid

Why does implicit == on map<<int,MyClass> not compile?

c++ c++11 operators

Check if returned std::function is "valid" in C++11

c++ c++11 task-queue

Allow users to include class without including headers used for privates

c++ c++11