Searched defs:unique_ptr (Results 1 – 4 of 4) sorted by relevance
46 struct unique_ptr(T, Deleter = default_delete!T) struct59 ref unique_ptr opAssign(typeof(null)) in opAssign() argument68 pointer t = __ptr();78 alias element_type = T;80 alias deleter_type = Deleter;83 this(pointer ptr) in this()108 // void swap(ref unique_ptr u) nothrow argument113 version (CppRuntime_Microsoft) in version()126 else version (CppRuntime_Gcc) in version()139 else version (CppRuntime_Clang) in version()
88 template<typename T> using unique_ptr = std::unique_ptr<T>; variable
50 template<typename T> using unique_ptr = std::unique_ptr<T, deleter<T>>; typedef
101 #define unique_ptr llvm::OwningPtr macro