std::experimental::observer_ptr::operator*, (3) Linux Manual Page
std::experimental::observer_ptr<W>::operator*,std::experimental::observer_ptr<W>::operator-> – std::experimental::observer_ptr<W>::operator*,std::experimental::observer_ptr<W>::operator-> Synopsis constexpr std::add_lvalue_reference_t<element_type> operator*() const; (1) (library fundamentals TS v2) constexpr element_type* operator->() const noexcept; (2) (library fundamentals TS v2) operator* and operator-> provide access to the object watched by *this. The behavior of operator* is undefined if get() == nullptr. Parameters (none) Return value 1) Returns the object watched by *this,…
