Baum\Node::isSelfOrDescendantOf PHP Method

isSelfOrDescendantOf() public method

Returns true if node is self or a descendant.
public isSelfOrDescendantOf ( $other ) : boolean
return boolean
    public function isSelfOrDescendantOf($other)
    {
        return $this->getLeft() >= $other->getLeft() && $this->getLeft() < $other->getRight() && $this->inSameScope($other);
    }