operator=()

Func::operator=(const Func&) method

Copy assignment.

Func & System::Func<Args>::operator=(const Func &other)

Arguments

ParameterTypeDescription
otherconst Func&Func delegate to copy to current object.

Return Value

Reference to this.

Func::operator=(Func&&) method

Move assignment.

Func & System::Func<Args>::operator=(Func &&other) noexcept

Arguments

ParameterTypeDescription
otherFunc&&Func delegate to move to current object. The state can be changed.

Return Value

Reference to this.

See Also