Baum\Node::moveLeft PHP Méthode

moveLeft() public méthode

Find the left sibling and move to left of it.
public moveLeft ( ) : Node
Résultat Node
    public function moveLeft()
    {
        return $this->moveToLeftOf($this->getLeftSibling());
    }