std::experimental::function<R(Args...)>::operator=
From cppreference.com
function& operator=( const function& other );
|
(1) | (library fundamentals TS) |
function& operator=( function&& other );
|
(2) | (library fundamentals TS) |
function& operator=( std::nullptr_t ) noexcept;
|
(3) | (library fundamentals TS) |
template< class F >
function& operator=( F&& f |