pQuery\DomNode::filter_odd PHP Method

filter_odd() protected method

Checks if node matches css query filter ":odd"
See also: match()
protected filter_odd ( ) : boolean
return boolean
    protected function filter_odd()
    {
        return ($this->index(false) & 1) === 1;
    }
DomNode