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());
    }