ParagonIE\Halite\Structure\Node::getExpandedNode PHP Method

getExpandedNode() public method

Nodes are immutable, but you can create one with extra data.
public getExpandedNode ( string $concat ) : Node
$concat string
return Node
    public function getExpandedNode(string $concat) : Node
    {
        return new Node($this->data . $concat);
    }