Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Parameter pack expansion within parentheses gives bizarre output

What is the char() type in C++?

c++ c++11 char g++ c++14

How to handle an api which returns different data types for the same input data types?

c++ function c++11 types c++14

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?