Introduction
PHP Manual
PHP Manual»Predefined Interfaces and Classes»InternalIterator

The InternalIterator class

(PHP 8)

Class to ease implementing IteratorAggregate for internal classes.

final class InternalIterator implements Iterator {
/* Methods */
private function __construct()
public function current(): mixed
public function key(): mixed
public function next(): void
public function rewind(): void
public function valid(): bool
}

Table of Contents

To Top