1. Revision History
1.1. Revision 4 - June 17th, 2019
- 
     Remove default void ** 
- 
     Forwarded to LWG: just needs to be wording approved now! 
1.2. Revision 3 - January 21st, 2019
- 
     Add details discussing upcoming implementations in §4 Implementation Experience. 
- 
     Add section about implementation churn. 
- 
     Add details about flow control statements and temporary evaluation for §3.7 Footguns?. 
- 
     Wording is now relative to [n4800], the latest working draft of the C++ Standard. 
1.3. Revision 2 - November 26th, 2018
- 
     Add §3.7 Footguns? section. 
- 
     Discuss implementation experience in more detail. 
- 
     Add exception inspection and reasoning. 
- 
     Add additional design decision information about customization points. 
1.4. Revision 1 - October 7th, 2018
Add wording. Incorporate wording feedback. Eliminate CTAD design. Add a few more words about implementation experience.
1.5. Revision 0
Initial release.
2. Motivation
You’re right that code shouldn’t be using shared_ptr, I was trying to make it work with as little change as possible but after that and other more recent problems I’m finding a huge refactoring less and less avoidable. I’ll make sure to turn everything into unique_ptr (there is no shared ownership anyways).
Your out_ptr will still be massively helpful. — King_DuckZ, September 25th, 2018
This library automates the 
| Shared Code | |
|---|---|
| From libavformat 
 | |
| Current Code | With Proposal | 
| 
 | 
 | 
We have very good tools for handling unique and shared resource semantics, alongside more coming with Intrusive Smart Pointers. Independently between several different companies, studios, and shops -- from VMWare and Microsoft to small game development startups -- a common type has been implemented. It has many names: 
This paper is a culmination of a private survey of types from the industry to propose a common, future-proof, high-performance 
In short: it’s a thing convertible to a 
3. Design Considerations
The core of 
3.1. Synopsis
The function template’s full specification is:
namespace std { template < class Pointer , class Smart , class ... Args > out_ptr_t < Smart , Pointer , Args ... > out_ptr ( Smart & s , Args && ... args ) noexcept ; template < class Smart , class ... Args > out_ptr_t < Smart , POINTER_OF ( Smart ), Args ... > out_ptr ( Smart & s , Args && ... args ) noexcept ; template < class Pointer , class Smart , class ... Args > inout_ptr_t < Smart , Pointer , Args ... > inout_ptr ( Smart & s , Args && ... args ) noexcept ; template < class Smart , class ... Args > inout_ptr_t < Smart , POINTER_OF ( Smart ), Args ... > inout_ptr ( Smart & s , Args && ... args ) noexcept ; } 
Where 
template < class Smart , class Pointer , class ... Args > class out_ptr_t { public : out_ptr_t ( Smart & , Args ...); ~ out_ptr_t () noexcept (...); operator Pointer * () noexcept ; }; template < class Smart , class Pointer , class ... Args > class inout_ptr_t { public : inout_ptr_t ( Smart & , Args ...); ~ inout_ptr_t () noexcept ; operator Pointer * () noexcept ; }; 
We specify "at minimum" because we expect users to override this type for their own shared, unique, handle-alike, reference-counting, and etc. smart pointers. The destructor of 
We chose this extension point because the other options (ADL extension, friend ADL extension) have proven to not be very feasible in the long run of maintainability. While we are wary that users open up namespace 
3.2. Overview
error_num c_api_create_handle ( int seed_value , int ** p_handle ); error_num c_api_re_create_handle ( int seed_value , int ** p_handle ); void c_api_delete_handle ( int * handle ); struct resource_deleter { void operator ()( int * handle ) { c_api_delete_handle ( handle ); } }; 
Given a smart pointer, it can be used like so:
std :: unique_ptr < int , resource_deleter > resource ( nullptr ); error_num err = c_api_create_handle ( 24 , std :: out_ptr ( resource ) ); if ( err == C_API_ERROR_CONDITION ) { // handle errors } // resource.get() the out-value from the C API function 
Or, in the re-create (reallocation) case:
std :: unique_ptr < int , resource_deleter > resource ( nullptr ); error_num err = c_api_re_create_handle ( 24 , std :: inout_ptr ( resource ) ); if ( err == C_API_ERROR_CONDITION ) { // handle errors } // resource.get() the out-value from the C API function 
3.3. Safety
This implementation uses a pack of 
std :: shared_ptr < int > resource ( nullptr ); error_num err = c_api_create_handle ( 24 , std :: out_ptr ( resource , resource_deleter {}) ); if ( err == C_API_ERROR_CONDITION ) { // handle errors } // resource.get() the out-value from // the C API function 
Additional arguments past the smart pointer stored in 
Of importance here is to note that 
std :: shared_ptr < int > resource ( nullptr ); error_num err = c_api_create_handle ( 42 , std :: out_ptr ( resource ) ); // ERROR: deleter was changed // to an equivalent of // std::default_delete! 
It is likely the intent of the programmer to also pass the fictional 
3.4. Safety: Exceptions
This is two-fold. First, by placing the 
std :: unique_ptr < int > num ( new int ()); // use, then have to prepare for some // c_api call int * raw_num = num . release (); if ( my_c_api_call ( & raw_num ) != 0 ) { // leak if the c api call does nothing!! throw std :: runtime_error ( "leaking memory!" ); } num . reset ( raw_num ); 
If the user used 
Secondly, the destructor for 
3.5. Casting Support
There are also many APIs (COM-style APIs, base-class handle APIs, type-erasure APIs) where the initialization requires that the type passed to the function is of some fundamental (
It is also important to note that going in the opposite direction is also highly desirable, especially in the case of doing API-hiding behind an e.g. 
3.5.1. Casting Support: easy void ** 
   Consider this DirectX Graphics Infrastructure Interface (DXGI) function on 
HRESULT EnumAdapterByGpuPreference ( UINT Adapter , DXGI_GPU_PREFERENCE GpuPreference , REFIID riid , void ** ppvAdapter ); 
Using 
HRESULT result = dxgi_factory . EnumAdapterByGpuPreference ( 0 , DXGI_GPU_PREFERENCE_MINIMUM_POWER , IID_IDXGIAdapter , std :: out_ptr < void *> ( adapter ) ); if ( FAILED ( result )) { // handle errors } // adapter.get() contains strongly-typed pointer 
No manual casting, 
This idiom is also useful for the 
3.5.2. Casting Support: to arbitrary T 
   In many cases, there is a typical C structure or similar that C++ users are sanctioned to derive and extend with their own data, with the promise that as long as the pointed passed to the function has a base class or matching type. It also happens that someone needs to cast from a type-erased 
For example, one technique detailed by a graphics develop helped them make an agnostic 
It is imperative that the user be allowed to specify a casting parameter that the 
struct fd { int handle ; fd () : fd ( nullptr ) {} fd ( std :: nullptr_t ) : handle ( static_cast < intptr_t > ( - 1 )) {} fd ( FILE * f ) #ifdef _WIN32 : handle ( f ? _fileno ( f ) : static_cast < intptr_t > ( - 1 )){ #else : handle ( f ? fileno ( f ) : static_cast < intptr_t > ( - 1 )) { #endif // Windows } explicit operator bool () const ; bool operator == ( std :: nullptr_t ) const ; bool operator != ( std :: nullptr_t ) const ; bool operator == ( const fd & fd ) const ; bool operator != ( const fd & fd ) const ; }; struct fd_deleter { using pointer = fd ; void operator ()( fd des ) const ; }; 
Casting in this case is cumbersome and often error-prone to do properly when interfacing with C or C++ standard library facilities. It becomes trivial with 
std :: unique_ptr < int , fd_deleter > my_unique_fd ; auto err = fopen_s ( std :: out_ptr < FILE *> ( my_unique_fd ), "prod.csv" , "rb" ); // check err, then work with raw fd 
This is an example of a codebase which works primarily off of file descriptors, but wants to interop with the standard C and C++ libraries. The cast here is valid and properly opens the file, while the 
This also demonstrates 
The full example code for Windows and *Nix platforms is available as a compile-able example.
3.6. Reallocation Support
In some cases, a function given a valid handle/pointer will delete that pointer on your behalf before performing an allocation in the same pointer. In these cases, just 
This can be heavily optimized in the case of 
3.7. Footguns?
As far as we know and have designed this specification, 
Furthermore, all examples of 
std :: unique_ptr < int > u_ptr ; auto op = std :: out_ptr ( u_ptr ); int err = c_function_call ( op ); if ( err != 0 ) { throw std :: runtime_error () } 
This still behaves the same: but, 
The only other place where someone could be sufficiently clever is with a function call _and_ a flow control statement. For example, an 
std :: unique_ptr < foo_handle , foo_deleter > my_unique ( nullptr ); if ( get_some_pointer ( std :: out_ptr ( my_unique )); my_unique )) { std :: cout << "yay" << std :: endl ; } else { std :: cout << "oh no" << std :: endl ; } 
This happens whether the expression is chained with multiple comma/conditional expressions or if someone uses the new flow-control initializer statements. This is an unfortunately holdover of how temporaries are treated, and rather being fixed with flow control initializer statements the same quirky rules for the old 
This was pointed out as strange, but we feel this is not much of a blocker for this proposal. All RAII-based, action-on-destroy resources suffer from this problem: it is neither a new nor novel problem. One does not use a 
3.8. Extension Points
A number of extension points were considered for this proposal. We have purposefully selected the ability to specialize the class template because it is the most flexible approach that allows library authors outside of the 
It is also important that we limit the surface area in which the user can harm themselves and their users. ADL, for example, can cause supreme danger because the overloads of 
Class template specialization requires exactly matching arguments and does not suffer from potential convertibility in which other solutions might pick wrong overloads or select the wrong extension call because of mixed-namespace arguments. It also prevents build breaks from being introduced in subtle and hard-to-catch ways. It is also much less likely for someone to try to apply 
Below are catalogued some explored and ultimately rejected customization points.
3.8.1. Rejected: just adding get_ref 
   This solution seeks to resolve performance problems and reseating issues by having 
3.8.2. Rejected: adding & operator 
   This is the same sin committed by Microsoft with 
3.8.3. Rejected: unrestricted ADL
Unfortunately, ADL is also entirely unconstrained once opened up in this manner. It takes careful programming and perhaps a bit of SFINAE to ensure there are no collisions, especially in the "base cases" users might want to specialize for. This can lead to brittle code that breaks when we ship updates to the desired ADL extension point, or users that under or over-constrain their version of the function. It exposes too much surface area for the programmer to load not a footgun but a landmine that either their future selves, coworkers, or left-behind future colleagues might get lost on.
It is a considerable contender but for the above reasons -- especially since 
3.8.4. Rejected: restricted ADL using in-class friend functions
At first, this idea is tempting. It is used in abseil to e.g. provide hash customization and allows the implementer to access the internals of the pointer they are adding it to. Having a 
Unfortunately, this requires opt-in from every author of a library type. This means that either you fork the library to your own version and patch it, maintain a patch in the case of an author who does not deem you adding that extension point useful, or just own the library and stay up to date. While feasible for large teams that have bandwidth to spend on this problem, this is problematic for smaller teams and hobby developers. It is a good way to do extension, but it is a novel idea and only tested within a few libraries. There are also issues of legality when performing modification to headers and compiled code directly to support this idiom: 
Already, users have sent me tweets and e-mails about extending this for their own types that they do not own. It would defeat the purpose of this type to require explicit opt-in.
4. Implementation Experience
This library has been brewed at many companies in their private implementations, and implementations in the wild are scattered throughout code bases with no unifying type. As noted in §2 Motivation, Microsoft has implemented this in 
VMWare has a type that much more closely matches the specification in this paper, titled 
Similarly, Adobe’s Chromium project has its own version of out_ptr.
The primary author of [p0468] in pre-r0 days also implemented an overloaded 
Given that many companies, studios and individuals have all invented the same type independently of one another, we believe this is a strong indicator of agreement on an existing practice that should see a proposal to the standard.
A full implementation with UB and friendly optimizations is available in the repository. The type has been privately used in many projects over the last four years, and this public implementation is already seeing use at companies today. It has been particularly helpful with many COM APIs, and the re-allocation support in 
A version of this library is going to be available in Boost in time for 1.70, which should roll out in April. It has been extensively proofed and checked over by Peter Dimov and Glen Fernandes in initial vetting for the Boost.SmartPtr repository at this issue.
4.1. Why Not Wrap It?
A common point raised while using this abstraction is to simply "wrap the target function". We believe this to be a non-starter in many cases: there are thousands of C API functions and even the most dedicated of tools have trouble producing lean wrappers around them. This tends to work for one-off functions, but suffers scalability problems very quickly.
Templated intermediate wrapper functions which take a function, perfectly forwards arguments, and attempts to generate e.g. a 
5. Performance
Many C programmers in our various engineering shops and companies have taken note that manually re-initializing a 
Teams eager to squeeze out performance realize they can only do this by relying on type-punning shenanigans to extract the actual value out of 
Below are some graphs indicating the performance metrics of the code. 5 categories were measured:
- 
     "c_code": handwritten C code, which does not use this idiom 
- 
     "clever": uses UB to alias the pointer value stored in std :: unique_ptr 
- 
     "friendly": modifies VC++'s, libc++'s, and libstdc++'s std :: unique_ptr out_ptr 
- 
     "manual": does the work by-hand using reset/release from a std :: unique_ptr 
- 
     "simple": a out_ptr 
The full JSON data for these benchmarks is available in the repository, as well as all of the code necessary to run the benchmarks across all platforms with a simple CMake build system.
5.1. For std :: out_ptr 
   You can observe two graphs for two common 
5.2. For std :: inout_ptr 
   The speed increase here is even more dramatic: reseating the pointer through 
6. Bikeshed
As with every proposal, naming, conventions and other tidbits not related to implementation are important. This section is for pinning down all the little details to make it suitable for the standard.
6.1. Alternative Specification
The authors of this proposal know of two ways to specify this proposal’s goals.
The authors have settled on the approach in §3.1 Synopsis. We believe this is the most robust and easiest to use: singular names tend to be easier to teach and use for both programmers and tools. We discuss the older techniques to uphold thorough discussion and inspection of the solution space.
The first way is to specify both functions 
The second way is to specify the class names to be 
Part of this specification is that you can specify the stored pointer for the underlying implementation of 
6.2. Naming
Naming is hard, and therefore we provide a few names to duke it out in the Bikeshed Arena:
For the 
- 
     out_ptr 
- 
     c_ptr 
- 
     c_out_ptr 
- 
     out_c_ptr 
- 
     alloc_c_ptr 
- 
     out_smart 
- 
     ptrptr 
- 
     ptr_to_ptr 
- 
     ptr_to_smart 
- 
     ptr_ref 
For the 
- 
     inout_ptr 
- 
     c_in_ptr 
- 
     c_inout_ptr 
- 
     inout_c_ptr 
- 
     realloc_c_ptr 
- 
     inout_smart, 
- 
     realloc_ptr_to_ptr 
- 
     realloc_ptr_to_smart 
- 
     realloc_ptr_ref 
As a pairing, 
7. Proposed Changes
The following wording is for the Library section, relative to [n4800]. This feature will go in the 
7.1. Proposed Feature Test Macro and Header
This should be available with the rest of the smart pointers, and thusly be included by simply including 
The proposed feature test macro for this is 
7.2. Intent
The intent of this wording is to allow implementers the freedom to implement the return type from 
- 
     the return type is of the name inout_ptr_t out_ptr_t 
- 
     the destructor of inout_ptr_t out_ptr_t out_ptr 
- 
     the proper implicit conversion operators are added to the type, 
- 
     the standard library implementation itself does not specialize inout_ptr_t out_ptr_t 
- 
     std :: shared_ptr out_ptr inout_ptr . reset () 
- 
     std :: shared_ptr inout_ptr_t 
The goals of the wording are to not restrict implementation strategies (e.g., a 
7.3. Proposed Wording
Note: The � character is used to denote a placeholder number which shall be selected by the editor. � represents the top-level entry place. For N4800, that � is 20.
Append to §17.3.1 General [support.limits.general]'s Table 35 one additional entry:
Macro name Value Header(s) __cpp_lib_out_ptr 201811L < memory > 
Modify §20.10.1 In general [memory.general] as follows:
1 The header
defines several types and function templates that describe properties of pointers and pointer-like types, manage memory for containers and other template types, destroy objects, and construct multiple objects in uninitialized memory buffers (20.10.3–19.10.11). The header also defines the templates unique_ptr, shared_ptr, weak_ptr, out_ptr_t, inout_ptr_t, and various function templates that operate on objects of these types (20.11). 
Add §20.10.2 Definitions [memory.defns] as follows:
1 Definition: Let
denote a type that is:POINTER_OF_OR ( T , U ) 
- —
if the qualified-idT :: pointer is valid and denotes a type, orT :: pointer - — otherwise,
if the qualified-idtypename T :: element_type * is valid and denotes a type,T :: element_type - — otherwise,
.U 2 Definition: Let
denote a type that is defined asPOINTER_OF ( T ) POINTER_OF_OR ( T , typename std :: pointer_traits < T >:: element_type * ) 
Add to §20.10.3 (previously §20.10.2) Header 
// 20.11.9, out_ptr_t template < class Smart , class Pointer , class ... Args > class out_ptr_t ; // 20.11.10, out_ptr template < class Pointer , class Smart , class ... Args > out_ptr_t < Smart , Pointer , Args ... > out_ptr ( Smart & s , Args && ... args ) noexcept ; template < class Smart , class ... Args > out_ptr_t < Smart , POINTER_OF ( Smart ), Args ... > out_ptr ( Smart & s , Args && ... args ) noexcept ; // 20.11.11, inout_ptr_t template < class Smart , class Pointer , class ... Args > class inout_ptr_t ; // 20.11.12, inout_ptr template < class Pointer , class Smart , class ... Args > inout_ptr_t < Smart , Pointer , Args ... > inout_ptr ( Smart & s , Args && ... args ) noexcept ; template < class Smart , class ... Args > inout_ptr_t < Smart , POINTER_OF ( SMART ), Args ... > inout_ptr ( Smart & s , Args && ... args ) noexcept 
Insert §20.11.9 [out_ptr.class]:
20.11.9 Class Template[out_ptr.class]out_ptr_t 1 out_ptr_t is a type used with smart pointers ([smartptr] 20.11) and types which are designed on the same principles to interoperate easily with functions that use output pointer parameters. [ Note — For example, a function of the form
— end note ].void foo ( void ** ) 2 out_ptr_t may be specialized ([temp.class.spec] 13.6.5) for program-defined types and shall meet the observable behavior in the rest of this section.
namespace std { template < class Smart , class Pointer , class ... Args > class out_ptr_t { public : // 20.11.9.1, constructors out_ptr_t ( Smart & , Args ...) noexcept ; out_ptr_t ( out_ptr_t && ) noexcept ; // 20.11.9.2, assignment out_ptr_t & operator = ( out_ptr_t && ) noexcept ; // 20.11.9.3, destructors ~ out_ptr_t () noexcept ( see - below ); // 20.11.9.4, conversion operators operator Pointer * () noexcept ; private : Smart * s ; // exposition only tuple < Args ... > a ; // exposition only Pointer p ; // exposition only }; } 2 If
is a specialization ofSmart andshared_ptr , the program is ill-formed.sizeof ...( Args ) == 0 shall meet thePointer requirements (([nullablepointer.requirements] 16.5.3.3)).Cpp17NullablePointer 3 [ Note: It is typically a user error to reset a
without specifying a deleter, asshared_ptr will replace a custom deleter with the default deleter upon usage ofstd :: shared_ptr , as specified in 20.11.3.4. — end note ]. reset () 20.11.9.1 Constructors [out_ptr.class.ctor]
out_ptr_t ( Smart & smart , Args && ... args ) noexcept ; 1 Effects: initializes
withs ,addressof ( smart ) witha , and initializesstd :: forward < Args > ( args )... to its value initialization.p 
out_ptr_t ( out_ptr && rhs ) noexcept ; 2 Effects: initializes
withs ,std :: move ( rhs . s ) witha , andstd :: move ( args )... withp . Then setsstd :: move ( rhs . p ) torhs . p .nullptr 20.11.9.2 Assignment [out_ptr.class.assign]
out_ptr_t & operator = ( out_ptr && rhs ) noexcept ; 1Effects: Equivalent to:
s = std :: move ( rhs . s ); a = std :: move ( rhs . a ); p = std :: move ( rhs . p ); rhs . p = nullptr ; return * this ; 20.11.9.3 Destructors [out_ptr.class.dtor]
~ out_ptr_t () noexcept ( see - below ); 1 Let
beSP ([memory.defns] 20.10.2).POINTER_OF_OR ( Smart , Pointer ) 2 Effects: Equivalent to:
where
- —
if the expressionif ( p != nullptr ) { s -> reset ( static_cast < SP > ( p ), std :: forward < Args > ( args )... ); } is well-formed,s -> reset ( static_cast < SP > ( p ), std :: forward < Args > ( args )...) - — otherwise
;if ( p != nullptr ) { * s = Smart ( static_cast < SP > ( p ), std :: forward < Args > ( args )... ); } are the arguments stored inArgs .a 4 Throws:
where
- — no exceptions and is
ifnoexcept is true;std :: is_pointer_v < Smart > - — any exceptions and is conditionally
fromnoexcept if the expressions -> reset ( static_cast < SP > ( p ), std :: forward < Args > ( args )... ); is well-formed;s -> reset ( static_cast < SP > ( p ), std :: forward < Args > ( args )...) - — otherwise, any exceptions and is conditionally
fromnoexcept ;* s = Smart ( static_cast < SP > ( p ), std :: forward < Args > ( args )... ); are the arguments stored inArgs .a 20.11.9.4 Conversions [out_ptr.class.conv]
operator Pointer * () noexcept ; 1 Effects: returns a pointer to
.p 
Insert §20.11.10 [out_ptr]:
20.11.10 Function Template
[out_ptr]out_ptr 1 out_ptr is a function template that produces an object of type out_ptr_t ([out_ptr.class] 20.11.9).
namespace std { template < class Pointer , class Smart , class ... Args > out_ptr_t < Smart , Pointer , Args ... > out_ptr ( Smart & s , Args && ... args ) noexcept ; template < class Smart , class ... Args > out_ptr_t < Smart , POINTER_OF ( Smart ), Args ... > out_ptr ( Smart & s , Args && ... args ) noexcept ; } 2 Effects: The first overload is Equivalent to:
return out_ptr_t < Smart , Pointer , Args ... > ( s , std :: forward < Args > ( args )...); 3 Effects: The second overload is Equivalent to:
return out_ptr_t < Smart , POINTER_OF ( Smart ), Args ... > ( s , std :: forward < Args > ( args )...); 
Insert §20.11.11 [inout_ptr.class]:
20.11.11 Class Template[inout_ptr.class]inout_ptr_t 1 inout_ptr_t is a type used with smart pointers ([smartptr] 20.11) and types which are designed on the same principles to interoperate easily with functions that use output pointer parameters. [ Note: For example, a function of the form
— end note ].errno_t foo_realloc ( void ** ) 2 inout_ptr_t may be specialized ([temp.class.spec] 13.6.5) for program-defined types and shall meet the observable behavior in the rest of this section.
namespace std { template < class Smart , class Pointer , class ... Args > class inout_ptr_t { public : // 20.11.11.1, constructors inout_ptr_t ( Smart & , Args ...) noexcept ; inout_ptr_t ( inout_ptr_t && ) noexcept ; // 20.11.11.2, assignment inout_ptr_t & operator = ( inout_ptr_t && ) noexcept ; // 20.11.11.3, destructors ~ inout_ptr_t () noexcept ( see - below ); // 20.11.11.4, conversion operators operator Pointer * () noexcept ; private : Smart * s ; // exposition only tuple < Args ... > a ; // exposition only Pointer p ; // exposition only }; } 2 If
is a specialization ofSmart , the program is ill-formed.shared_ptr shall meet thePointer requirements ([nullablepointer.requirements] 16.5.3.3).Cpp17NullablePointer 3 [ Note: It is impossible to properly release the managed resource from a
given its shared ownership model. — end note ]shared_ptr 20.11.11.1 Constructors [inout_ptr.class.ctor]
inout_ptr_t ( Smart & smart , Args ... args ) noexcept ; 1 Effects: initializes
withs ,addressof ( smart ) witha , andstd :: forward < Args > ( args )... to eitherp 
- —
ifsmart is true,std :: is_pointer_v < Smart > - — otherwise, an unspecified value of either
or its value initialization.smart . get () 2 [ Note: An unspecified value allows an implementation and subsequent program-defined specializations to pick an option which fits an implementation’s purpose and potential implementation-specific optimizations. — end note ].
3 Remarks: if an implementation calls
orsmart . release () , then it shall not calls -> release () in the destructor.s -> release () 
inout_ptr_t ( inout_ptr && rhs ) noexcept ; 4 Effects: initializes
withs ,std :: move ( rhs . s ) witha , andstd :: move ( args )... withp . Then setsstd :: move ( rhs . p ) torhs . p .nullptr 20.11.11.2 Assignment [inout_ptr.class.assign]
inout_ptr_t & operator = ( inout_ptr && rhs ) noexcept ; 1 Effects: Equivalent to:
s = std :: move ( rhs . s ); a = std :: move ( rhs . a ); p = std :: move ( rhs . p ); rhs . p = nullptr ; return * this ; 20.11.11.3 Destructors [inout_ptr.class.dtor]
~ inout_ptr_t () noexcept ( see - below ); 1 Constraints: Either
isstd :: is_pointer_v < Smart > trueor the expressionis well-formed.s -> release () 2 Let
beSP ([memory.defns] 20.10.2).POINTER_OF_OR ( Smart , Pointer ) 3 Effects: Equivalent to:
where
- —
ifif ( p != nullptr ) { * s = Smart ( static_cast < SP > ( p ), std :: forward < Args > ( args )... ); } is true,std :: is_pointer_v < Smart > - —
if the expressions -> release (); if ( p != nullptr ) { s -> reset ( static_cast < SP > ( p ), std :: forward < Args > ( args )... ); } is well-formed,s -> reset ( static_cast < SP > ( p ), std :: forward < Args > ( args )...) - — otherwise,
.s -> release (); if ( p != nullptr ) { * s = Smart ( static_cast < SP > ( p ), std :: forward < Args > ( args )... ); } are the arguments stored inArgs .a 4 Throws:
where
- — no exceptions and is
ifnoexcept is true;std :: is_pointer_v < Smart > - — any exceptions and is conditionally
fromnoexcept ands -> release (); if the expressions -> reset ( static_cast < SP > ( p ), std :: forward < Args > ( args )... ); is well-formed;s -> reset ( static_cast < SP > ( p ), std :: forward < Args > ( args )...) - — otherwise, any exceptions and is conditionally
fromnoexcept ands -> release (); ;* s = Smart ( static_cast < SP > ( p ), std :: forward < Args > ( args )... ); are the arguments stored inArgs .a 20.11.11.4 Conversions [inout_ptr.class.conv]
operator Pointer * () noexcept ; 1 Effects: returns a pointer to
.p 
Insert §20.11.12 [inout_ptr]:
20.11.12 Function Template
[inout_ptr]inout_ptr 1 inout_ptr is a function template that produces an object of type inout_ptr_t ([inout_ptr.class] 20.11.11).
namespace std { template < class Pointer , class Smart , class ... Args > inout_ptr_t < Smart , Pointer , Args ... > inout_ptr ( Smart & s , Args && ... args ) noexcept template < class Smart , class ... Args > inout_ptr < Smart , POINTER_OF ( Smart ), Args ... > inout_ptr ( Smart & s , Args && ... args ) noexcept ; } 2 Effects: The first overload is Equivalent to:
return inout_ptr_t < Smart , Pointer , Args ... > ( s , std :: forward < Args > ( args )...); 3 Effects: The second overload is Equivalent to:
return inout_ptr_t < Smart , POINTER_OF ( Smart ), Args ... > ( s , std :: forward < Args > ( args )...); 
8. Acknowledgements
Thank you to Lounge<C++>'s Cicada, melak47, rmf, and Puppy for reporting their initial experiences with such an abstraction nearly 5 years ago and helping JeanHeyd Meneide implement the first version of this.
Thank you to Mark Zeren for help in this investigation and analysis of the performance of smart pointers.
Thank you to Tim Song for reviewing the wording for this paper and vastly improving it.