std::inout_ptr_t<Smart,Pointer,Args...>::inout_ptr_t
From cppreference.com
explicit inout_ptr_t( Smart& sp, Args... args );
|
(1) | (since C++23) (constexpr since C++26) |
inout_ptr_t( const inout_ptr_t& ) = delete;
|
(2) | (since C++23) |
1) Creates an
inout_ptr_t.
- Adapts
spas if binds it to theSmart&member, captures every argumenttinargsas if initializes the corresponding member of typeTinArgswithstd::forward<T>(t). - Then initializes the stored
PointerwithspifSmartis a pointer type, otherwise, initializes it withsp.get().
sp.release() may be called if Smart is not a pointer type, in which case it will not be called again within the destructor.2) Copy constructor is explicitly deleted.
inout_ptr_t is neither copyable nor movable.Contents
Parameters
| sp | - | the object (typically a smart pointer) to adapt |
| args | - | the arguments used for resetting to capture |
Exceptions
May throw implementation-defined exceptions.
Notes
If Smart is not a pointer type and sp.release() is not called by the constructor, it may be called by the destructor before resetting sp.
Every argument in args is moved into the created inout_ptr_t if it is of an object type, or transferred into the created inout_ptr_t as-is if it is of a reference type.
The constructor of inout_ptr_t is allowed to throw exceptions. For example, when sp is an intrusive pointer with a control block, the allocation for the new control block may be performed within the constructor rather than the destructor.
Example
| This section is incomplete Reason: no example |