Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Should templated functions take lambda arguments by value or by rvalue reference?

c++ templates lambda c++11 g++

std::this_thread::sleep_for() and GCC

c++ concurrency c++11 g++

Do I have to use atomic<bool> for "exit" bool variable?

c++ c++11 atomic

How can I pass a C++ lambda to a C-callback that expects a function pointer and a context?

c++ c c++11 lambda

C++ unordered_set of vectors

c++ c++11 vector

C++11 Smart Pointer Semantics

Why STL implementation is so unreadable? How C++ could have been improved here?

c++ stl c++11 readability

intrusive_ptr in c++11

What optimization does move semantics provide if we already have RVO?

How can I write a stateful allocator in C++11, given requirements on copy construction?

c++ c++11 stl allocator

What expressions yield a reference type when decltype is applied to them?

c++ c++11 decltype

Get index in C++11 foreach loop

c++ c++11 foreach

Alternatives of static_pointer_cast for unique_ptr

Different ways of initializing an object in c++

What are differences between std, tr1 and boost (as namespaces and/or libraries)?

c++ c++11 boost tr1

Does the C++11 standard require that two iterations through a constant unordered_container visit elements in the same order?

c++ c++11 language-lawyer

boost::lock_guard vs boost::mutex::scoped_lock

boost c++11 future-proof

C++11 operator"" with double parameter

c++ c++11 literals

Obtaining function pointer to lambda?

c++ c++11 lambda c++14

Sort a vector in which the n first elements have been already sorted?