You are here

public function QueryPath::getIterator in QueryPath 7.3

Same name and namespace in other branches
  1. 6 QueryPath/QueryPath.php \QueryPath::getIterator()
  2. 7.2 QueryPath/QueryPath.php \QueryPath::getIterator()

File

QueryPath/QueryPath.php, line 2054

Class

QueryPath

Code

public function getIterator() {
  $i = new QueryPathIterator($this->matches);
  $i->options = $this->options;
  return $i;
}