std::experimental::any::operator=

Assigns contents to the contained value.

# Declarations

any& operator=( const any& rhs );

(library fundamentals TS)

any& operator=( any&& rhs ) noexcept;

(library fundamentals TS)

template< typename ValueType >
any& operator=( ValueType&& rhs );

(library fundamentals TS)

# Parameters

# Return value

*this

# See also