Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++11 auto and function return types

c++ c++11 type-inference

How do I sort efficiently a quadruple structs in C++?

unique_lock across threads?

c++ c++11 concurrency locking

How to handle failed methods: by using exceptions or making the methods return bool?

c++ c++11

Creating a temporary of decltype

Is std::vector<T>::resize( n, val ) sufficient for initialisation?

How to use boost::split with boost::string_ref in boost 1.55

c++11 boost

std::thread constructor with no parameter

C++ Constructor: Perfect forwarding and overload

Reading and writing a std::vector into a file correctly with iterators

c++ c++11

Why can't I have an enum as the underlying type of another enum?

c++ c++11 enums subclassing

Do the following two declarations involving automatic return type work the same? If so, why?

c++ c++11 c++14

c++0x inherited constructor in templates

Questions about the move assignment operator

Efficient use of move semantics together with (N)RVO

How to generate a std::get like function for my class?

c++ templates c++11

C++: Why is 'operator+=' defined but not 'operator+' for strings? [duplicate]

c++ string c++11 operators

why vector does not updates in loop?

c++ c++11 vector

What is a "hint"?

c++ c++11

Trying to return a `std::unique_ptr` constructed with `NULL`

c++ c++11