Baum\Node::moveRight PHP Метод

moveRight() публичный Метод

Find the right sibling and move to the right of it.
public moveRight ( ) : Node
Результат Node
    public function moveRight()
    {
        return $this->moveToRightOf($this->getRightSibling());
    }