Automattic\WooCommerce\Vendor\GraphQL\Language\AST

NodeList::offsetExistspublicWC 1.0ReturnTypeWillChange

Method of the class: NodeList{}

No Hooks.

Returns

null. Nothing (null).

Usage

$NodeList = new NodeList();
$NodeList->offsetExists( $offset ): bool;
$offset(int|string) (required)
.

NodeList::offsetExists() code WC 10.9.1

public function offsetExists($offset): bool
{
    return isset($this->nodes[$offset]);
}