Assignment operators
Declared in <script/miniscript.h>
Deleted copy assignment; use Clone() instead.
Node&
operator=(Node const& other) = delete;
» more...
Move assignment operator.
Node&
operator=(Node&& other) noexcept = default;
» more...
Reference to this node.
| Name | Description |
|---|---|
| other | The node that would be assigned from. |