std::experimental::atomic_shared_ptr<T>::load

Atomically loads and returns the current value of the atomic_shared_ptr. Memory is affected according to the value of order.

# Declarations

shared_ptr<T> load( std::memory_order order = std::memory_order_seq_cst ) const noexcept;

# Parameters

# Return value

The current value of the atomic_shared_ptr.

# See also