Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++ generic insert into std container?

c++ c++11 containers

Correct way to allocate memory to std::shared_ptr

Is it possible to set the value of elements in a constexpr array after declaration?

c++ arrays c++11 constexpr

std::move with std::shared_ptr in lambda

What is a good design to add an "all" option to an enum in C++?

Different behavior when `std::lock_guard<std::mutex>` object has no name

c++ c++11 stdthread stdmutex

Is std::remove_if with lambda predicate and auto element possible?

c++ stl lambda c++11

What is the difference between SGI slist and C++11 forward_list?

Atomic Operations in C++

c++ c++11

Local static variable is instantiated multiple times, why?

c++ c++11

Test for "POD-ness" in c++/c++11?

c++ c++11 types

Lambda Capture and Memory Management

std::condition_variable spurious blocking

Can I move the contents of one vector to the end of another?

Rename std::vector to another class for overloading?

c++ c++11 stdvector

create container from another container, applying each element some function in c++

Why does `return {};` not apply to `std::forward_list`?

Is there a cast (or standard function) with the opposite effect to `std::move`

c++ c++11

Why is no empty argument list required inside this class definition?

Can I have non owning shared pointers?