Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

c++ repeat N iterations

c++ c++11

Possible results of integer xor in C++

c++ c++11 language-lawyer

Why mutex (std::mutex) is heavy?

Would you implement a lightweight XML parser with <regex>?

c++ xml regex c++11

How do I implement array::max_size()?

c++ arrays stl c++11 aggregate

C++0x: how to get variadic template parameters without reference?

Does C++0x support Anonymous Inner Classes?

c++ c++11

Confusion about r-value references

c++ c++11 rvalue-reference

std::async not starting new threads with std::launch::async policy

Move constructor is required even if it is not used. Why?

c++ c++11 std c++14

Deleting std::thread pointer raises exception "libc++abi.dylib: terminating"

Is there any other advantage of lambdas besides convenience? [closed]

c++ c++11 lambda

Understanding move semantics for std::array

c++ c++11 move-semantics

Turning this raw pointer situation into a unique_ptr?

Get all elements but the first as a separate vector

c++ c++11 vector

What C++ STL class should I use to reduce fragmentation caused by lots of small allocations?

Is std::unique_ptr the wrong tool to allocate memory for an array?

Maintain x*x in C++

c++ c++11 math optimization

Comparing different types of C++ for-loops [closed]

c++ c++11 for-loop iterator

Range-based loop, unique pointers, and move semantics