An open API service indexing awesome lists of open source software.

Projects in Awesome Lists tagged with unique-ptr

A curated list of projects in awesome lists tagged with unique-ptr .

https://github.com/mguludag/unique_ptr-4qt

A simple std::unique_ptr type alias with custom deleter that calls QObject::deleteLater() for QObject types

pointers qt sfinae smart-pointer stl unique-ptr

Last synced: 22 Feb 2025

https://github.com/mguludag/cpp-pimpl-helper

A simple helper type alias for std::unique_ptr and custom deleter for using pimpl idiom with std::unique_ptr easily

cpp pimpl unique-ptr

Last synced: 22 Feb 2025

https://github.com/levongh/unique_ptr

The class template unique_ptr<T> manages a pointer to an object of type T. You will usually construct an object of this type by calling new to create an object in the unique_ptr constructor. After calling the constructor, you can use the object very much like a raw pointer. The * and -> operators work exactly like you would expect, and are very efficient — usually generating nearly the same assembly code as raw pointer access.

cplusplus-11 cplusplus-14 unique-ptr

Last synced: 03 Apr 2025