14 T* link<T>::lock_ptr::operator->() const noexcept
20 T& link<T>::lock_ptr::operator*() const noexcept
34 return m_pRaw !=
nullptr;
41 return get() == other.get();
48 return get() <=> other.get();
63 link<T>::link(std::weak_ptr<T> pWeak) noexcept : m_pWeak(std::move(pWeak))
69 link<T>::link(
const std::shared_ptr<U>& pStrong) noexcept : m_pWeak(pStrong)
83 m_pWeak = pLink.m_pWeak;
97 m_pWeak = std::move(pLink.m_pWeak);
121 return m_pWeak.expired();
127 return !m_pWeak.expired();
T * get() const noexcept
Get object pointer.
bool operator==(const U &other) const noexcept
operator==
std::strong_ordering operator<=>(const U &other) const noexcept
operator<=>
std::weak_ptr wrapper that do not allow you to create strong pointer (std::shared_ptr)
lock_ptr lock() const noexcept
Lock and return strong pointer.
bool expired() const noexcept
If pointer is expired.
link & operator=(const link< U > &pLink) noexcept
operator=
void reset() noexcept
Reset weak pointer.