Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Should I use shared_ptr or weak_ptr on not mainly containers?

c++ c++11 smart-pointers

Why use boost::optional when I can return a pointer [closed]

c++ c++11 boost-optional

Why can't I sort a vector of reference_wrapper<std::chrono::milliseconds>?

c++ c++11 reference-wrapper

Warning: function uses 'auto' type specifier without trailing return type

How can I show C++ code documentation in Xcode 9.3?

When to use Move Constructors/Assignments

c++ c++11 move-semantics

std::uniform_real_distribution inclusive range

c++ random c++11

What's the correct way to initialize a member array with an initializer list?

c++ c++11

Are C++11 containers supported by Cython?

c++11: what is its gc interface, and how to implement?

c++11 garbage-collection

Passing rvalue as reference

c++ qt c++11 rvalue-reference

using map's initializer list inside constructor initializer

Why can't a Base class object be assigned to a Derived class object?

Difference between std::decay and std::remove_reference

c++ c++11 templates c++20

Memory ordering issues

What does *unspecified* means in C++ typedef statement?

c++ c++11 typedef declaration

C++ equivalent of C#'s Func<T, TResult>

c# c++ c++11 function-object

How do I create a packaged_task with parameters?

c++ c++11 future packaged-task

Changes between C++ standard working drafts?

c++ c++11

In C++, what categories (lvalue, rvalue, xvalue, etc.) can expressions that produce temporaries of class type fall into?