Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Why does std::map not have an insert function of type insert(key &k, val &v)

When I run several threads that match the number of CPU core/threads, will each thread run on a separate core/thread?

Achieve functor overloading through composition

c++ templates c++11 c++14

Get references to the last two elements in std::list

c++ c++11 reference stl iterator

Why does VC++ compile the code while clang doesn't?

Use OpenMP in C++11 to find the maximum of the calculated values

c++ c++11 openmp

Let cmake with clang use c++11 (c++14)

c++11 stl cmake clang c++14

Does the C++11 standard guarantee "n2 is int&" by "auto n2 = const_cast<int&>(n);"?

C++11 - Can't define constexpr literal using constexpr function?

c++ c++11 gcc constexpr

Why doesn't std::function work in this situation?

How to pass a function in a class as a parameter to another function in the same class in C++11?

c++ c++11 lambda

Why an Rvalue Reference is Turned into Lvalue Reference by a Universal Reference

rule of zero vs. base class destructors

c++ c++11 rule-of-zero

Understanding C++ strings

c++ string c++11

How to create a new value and assign to a private unique_ptr in a class constructor?

Compilation error using googletest's EXPECT_NO_THROW with std::array

c++ c++11 googletest stdarray

Stop r-value invoking move assignment C++ 11

c++ c++11

use lambda in function template, can't deduce type, makeSet() use case

Why there is no templated typedef in C++11? [duplicate]

How to inspect the interface of a template template class