Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Stopping long-sleep threads

C++: Can an unused lambda explicit capture be optimized out?

Why does changing `const ull` to `const ull&` in function parameter result in performance gain?

Is there any technical reason why std::lower_bound is not specialized for red-black tree iterators?

Does in class member initialization takes place at compile time or run-time?

c++ c++11

best way to do variant visitation with lambdas

why is std::lock_guard not movable?

Do mutexes guarantee ordering of acquisition?

multithreading c++11

OpenMP vs C++11 threads

c++ multithreading c++11

Explicit move constructor?

How to pass const pointer to const object using unique_ptr

c++ c++11 unique-ptr

When are implicit move constructors not good enough?

c++ c++11 move-semantics

What are the advantages of using uniform_int_distribution vs a modulus operation?

c++ c++11 random stl

boost::thread_group in C++11?

c++ boost c++11 boost-thread

Can a lambda capturing nothing access global variables?

Why is std::list bigger on c++11?

c++ gcc c++11 c++98

Inserting a variadic argument list into a vector?

Inserting into an unordered_set with custom hash function

c++ c++11 unordered-set

C++11 type trait to differentiate between enum class and regular enum

Move Constructors and Static Arrays