Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

What to use std::optional or std::unique_ptr

Why does std::unique_ptr not permit type inference?

c++ c++11 unique-ptr

Can std::make_unique be used with abstract interface?

c++ std unique-ptr

Double (two-dimensional) array using std::unique_ptr

c++ c++11 unique-ptr

Pointing to the content of std::unique_ptr

To support move semantics, should function parameters be taken by unique_ptr, by value, or by rvalue?

c++ c++11 vector move unique-ptr

Move ownership from std::shared_ptr to std::unique_ptr

How to properly return a collection of unique_ptr

c++ c++11 vector unique-ptr

Why is there no safe alternative to unique_ptr::operator*()?

Exception safety and make_unique

Dereferencing a temporary unique_ptr

c++ c++11 unique-ptr

std::unique_ptr with custom deleter for win32 LocalFree

Using a union with unique_ptr

Why unique-ptr doesn't check base class to virtual destructible?

Non-Movable C++17 Unique Pointer

c++ c++11 c++17 unique-ptr

unique_ptr<int[]> or vector<int>?

c++ vector unique-ptr

stl container with std::unique_ptr's vs boost::ptr_container

Pimpl - Why can make_unique be called on an incomplete type

Move a unique_ptr with custom deleter to a shared_ptr

Should I use shared_ptr or unique_ptr? [duplicate]