Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Why is my function overload not preferred over my templated one?

Purpose of Dummy Parameter in Postfix Operator Overload? c++

Is nullptr used to terminate C-style strings?

c++ c pointers c++11 c-strings

Compile time replacement of string constants with integers

c++ c++11

Why can't I get any performance improvements by running multiple threads in C++11?

c++ std::map get element with highest key below X?

c++ c++11 stl stdmap

How to map ranges to values?

c++ c++11

Is this a misuse of unique_ptr?

c++ c++11 c++14

Shared pointers not increasing the use_count

Singleton object using unique_ptr

c++ c++11

initialize part of a const std::map from another const std::map

Need help decoding this typedef

Is using unique_lock in new scope equivalent to unlock call at the end of work with shared resource?

c++ multithreading c++11

How does the std::string constructor handle char[] of fixed size?

c++ string c++11

Insert an object pointer into a map of maps through emplace() does not work

std::mutex as class member, and store class obect to container

c++ c++11 mutex

How to pass an overloaded member-function as parameter?

How do I compare a section of a string without copying?

c++ string c++11

If an object is created locally and thrown as an exception in C++, how can a local object be valid outside it's scope .i.e., in catch block?

How do I serialise/deserialise a std::vector<bool> most efficiently?

c++ c++11 stl