Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is there a way to iterate over at most N elements using range-based for loop?

c++ c++11 stl c++14

What is different between join() and detach() for multi threading in C++?

Why do C++ templates use the angle bracket syntax?

Why did C++11 remove the default value from the prototypes of std::vector's fill constructor?

c++ c++11 vector

Is the ranged based for loop beneficial to performance?

Get return type of member function without an object

c++ templates c++11 decltype

recursive variadic template to print out the contents of a parameter pack

Why can't you take the address of nullptr?

c++ c++11 std nullptr

Is list better than vector when we need to store "the last n items"?

Should std::bind be compatible with boost::asio?

c++ boost c++11 boost-asio

In C++11 what should happen first: raw string expansion or macros?

Which std::async implementations use thread pools?

using SFINAE for template class specialisation

c++ templates c++11 sfinae

Can I safely use OpenMP with C++11?

c++ c++11 openmp

Difference between class and struct with regards to padding and inheritance

c++ c++11 gcc

Why should I prefer the "explicitly typed initializer" idiom over explicitly giving the type

c++ c++11 effective-c++

Why does this simple std::thread example not work?

c++ multithreading c++11

Generic hash for tuples in unordered_map / unordered_set

How would you implement your own reader/writer lock in C++11?

The std::transform-like function that returns transformed container

c++ templates c++11 stl