Assignment operators

Synopses

Declared in <script/miniscript.h>

Deleted copy assignment; use Clone() instead.

Node&
operator=(Node const& other) = delete;

Move assignment operator.

Node&
operator=(Node&& other) noexcept = default;

Return Value

Reference to this node.

Parameters

Name

Description

other

The node that would be assigned from.

Created with MrDocs