Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in 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

Can I use C++11 smart pointers as a message return type in the C++ Actor Framework?

Cannot get SFINAE to work

Parsing a C++ string into a tuple

std::merge and equal element order

c++ c++11

How to get -std=c++11 w/ libstdc++?

c++ c++11 clang libstdc++ libc++

Will an exception thrown from a noexcept function parameter's constructor immediately result in a call to std::terminate()?

c++ c++11 exception noexcept

What is the difference between initializing with = and initializing with {}?

c++ c++11

Is it safe to return from function before all std::futures are finished?

c++ c++11 asynchronous future

Definition of "pattern" for parameter pack expansion, especially within a function call

c++ c++11