Habari\StackItem::in_stack_index PHP Method

in_stack_index() public method

Determine if this item is in the specified stack array
public in_stack_index ( Array $stack ) : boolean
$stack Array The stack to look in for this item
return boolean True if the stack contains an index that matches this item's name
    public function in_stack_index($stack)
    {
        return isset($stack[$this->name]);
    }