Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Code readability with c++11 lambdas

c++ coding-style lambda c++11

How can I cleanly specify which arguments I am passing and which remain default?

Does std::hash guarantee equal hashes for "equal" floating point numbers?

How do I get the type of the elements in a vector?

c++ c++11 vector stl

C++: error: exception handling disabled, use -fexceptions to enable

c++ c++11

A standard way for getting variable name at compile time

c++ c++11 compile-time

Why is iterating over a std::set so much slower than over a std::vector?

c++ c++11 stl

Threads in C, C++, C++0x, pthread and boost

Is the <random> library in c++11 portable?

c++ random c++11

What to return when a std::map::at goes out_of_range?

c++ exception c++11

Why is this pointer needed when calling std::call_once()?

Can't use asio::placeholders::error in non-Boost version of Asio

c++ c++11 boost boost-asio

Merging two unordered_maps with overlapping keys

c++ c++11

float initialization from double with braces

Using std::chrono::duration::rep with printf in 32bit and 64bit programs

c++ c++11 io long-integer chrono

What special purpose does unique_lock have over using a mutex?

Does 'final' specifier add any overhead?

c++ c++11 c++14

How to declare a vector of functions (lambdas)

c++ c++11 c++14

How expensive is to copy an std::function?

c++ c++11 std-function

Mark a member function as const when it is conceptually not

c++ c++11 constants