Automattic\WooCommerce\Vendor\Symfony\Component\CssSelector\Parser

Token::isDelimiterpublicWC 1.0

Method of the class: Token{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Token = new Token();
$Token->isDelimiter( $values ): bool;
$values(array)
.
Default: []

Token::isDelimiter() code WC 10.8.1

public function isDelimiter(array $values = []): bool
{
    if (self::TYPE_DELIMITER !== $this->type) {
        return false;
    }

    if (empty($values)) {
        return true;
    }

    return \in_array($this->value, $values);
}