operator=()

ExceptionWrapper::operator=(const ExceptionWrapper&) method

Assignment operator.

ExceptionWrapper & System::ExceptionWrapper<T>::operator=(const ExceptionWrapper &other)

Arguments

ParameterTypeDescription
otherconst ExceptionWrapper&Other instance of wrapper class that must be assigned.

Return Value

Instance with new assigned value.

ExceptionWrapper::operator=(ExceptionWrapper&&) method

Move assignment operator.

ExceptionWrapper & System::ExceptionWrapper<T>::operator=(ExceptionWrapper &&other) noexcept

Arguments

ParameterTypeDescription
otherExceptionWrapper&&Other instance of wrapper class that must be moved.

Return Value

Instance with new moved value.

See Also