Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

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

How to handle const/non const combination of getters without duplicate code? [duplicate]

c++ c++11 constants code-reuse

Operator bool() conflicting with template Type() operator when Type = bool

c++ c++11 templates

Does std::initializer_list heap allocate memory?

What to assign a variable that I don't want to be equal to any possible input?

c++ c++11

What elegant method callback design should be used?

A problem with higher order functions and lambdas in C++0x