Namespaces
Variants
Views
Actions

std::experimental::any::operator=

From cppreference.com
< cpp‎ | experimental‎ | any
 
 
Technical specifications
Filesystem library (filesystem TS)
Library fundamentals (library fundamentals TS)
Library fundamentals 2 (library fundamentals 2 TS)
Extensions for parallelism (parallelism TS)
Extensions for parallelism 2 (parallelism TS v2)
Extensions for concurrency (concurrency TS)
Concepts (concepts TS)
Ranges (ranges TS)
Special mathematical functions (special math TR)
 
 
std::experimental::any
Member functions
any::operator=
Modifers
Observers
Non-member functions
 
any& operator=( const any& rhs );
(1) (library fundamentals TS)
any& operator=( any&& rhs ) noexcept;
(2) (library fundamentals TS)
template<typename ValueType>
    any& operator=( ValueType&& rhs );
(3) (library fundamentals TS)

Assigns contents to the contained value.

1) Assigns by copying the state of rhs, as if by any(rhs).swap(*this).
2) Assigns by moving the state of rhs, as if by any(std::move(rhs)).swap(*this). rhs is left in a valid but unspecified state after the assignment.
3) Assigns the type and value of rhs, as if by any(std::forward<ValueType>(rhs)).swap(*this). If std::is_copy_constructible<std::decay_t<ValueType>>::value is false, the program is ill-formed. This overload only participates in overload resolution if std::decay_t<ValueType> is not the same type as any.

Contents

[edit] Template parameters

ValueType - contained value type
Type requirements
-
std::decay_t<ValueType> must meet the requirements of CopyConstructible.

[edit] Parameters

rhs - object whose contained value to assign

[edit] Return value

*this

[edit] Exceptions

1,3) Throws bad_alloc or any exception thrown by the constructor of the contained type. If an exception is thrown, there are no effects (strong exception guarantee).

[edit] See also

constructs an any object
(public member function) [edit]