System::Func::operator= method

Func::operator=(const Func&) method

Copy assignment.

Func & System::Func<Args>::operator=(const Func &other)
ParameterTypeDescription
otherconst Func&Func delegate to copy to current object.

ReturnValue

Reference to this.

See Also

Func::operator=(Func&&) method

Move assignment.

Func & System::Func<Args>::operator=(Func &&other) noexcept
ParameterTypeDescription
otherFunc&&Func delegate to move to current object. The state can be changed.

ReturnValue

Reference to this.

See Also