std::experimental::observer_ptr (3) - Linux Manuals
std::experimental::observer_ptr: std::experimental::observer_ptr
NAME
std::experimental::observer_ptr - std::experimental::observer_ptr
Synopsis
Defined in header <experimental/memory>
template< class W > (library fundamentals TS v2)
class observer_ptr;
std::experimental::observer_ptr is a non-owning pointer, or observer. The observer stores a pointer to a second object, known as the watched object. An observer_ptr may also have no watched object.
An observer is not responsible in any way for the watched object; there is no inherent relationship between an observer and the object it watches.
It is intended as a near drop-in replacement for raw pointer types, with the advantage that, as a vocabulary type, it indicates its intended use without need for detailed analysis by code readers.
Specializations of observer_ptr satisfy the requirements of CopyConstructible and CopyAssignable.
Type requirements
-
W shall not be a reference type, but may be an incomplete type.
Member types
Member type Definition
element_type W, the type of the object watched by this observer_ptr
Member functions
constructor (public member function)
destructor destructs an observer_ptr
(implicitly declared)
operator= implicitly declared copy and move assignment operators that assign the stored pointer
(implicitly declared)
Modifiers
release (public member function)
reset (public member function)
swap (public member function)
Observers
get (public member function)
operator_bool (public member function)
operator* (public member function)
operator->
Conversions
operator_element_type* (public member function)
Non-member functions