Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

std::tuple as template argument?

c++ templates c++11

Unlock a thread from another thread in C++11

Constness of STL containers and their elements - when to use const?

c++ c++11 vector stl constants

Using enumerated class values to call an array element in C++

c++ arrays c++11 struct enums

Is it valid to pass non-arithmetic types as arguments to cmath functions?

asio lambda with unique_ptr capture

How to detect whether some callable takes a rvalue reference?

C++11 std::thread join crashes with system_error exception and SIGABRT on Xcode 6?

global declarations/initializations using static, const, constexpr

c++ c++11

C++ Template Metaprogramming issue in type selection

c++11 boost

Did I understand correctly the point of Scott Meyers' example of std::weak_ptr?

Distinguishing between multiple exceptions of the same type

One occasional writer, multiple frequent readers for std::map

"anti-SFINAE" enabling an overload if a given expression is *not* well-formed

c++ c++11 sfinae

Automatically generated move constructor with not movable members

c++ c++11 move-semantics

c++ foreach loop with pointers instead of references

c++ c++11 foreach

Creating variadic accepting only reference or pointer

Why is std::shuffle as slow (or even slower than) std::sort?

Usecases for std::unordered_multiset

C++ thread-safe increment with modulo without mutex using std::atomic