Baum\Node::isTrunk PHP 메소드

isTrunk() 공개 메소드

Returns true if this is a trunk node (not root or leaf).
public isTrunk ( ) : boolean
리턴 boolean
    public function isTrunk()
    {
        return !$this->isRoot() && !$this->isLeaf();
    }