<?php
final class Generator implements Iterator
{
function rewind(): void {}
function valid(): bool {}
function current() {}
function key() {}
function next(): void {}
function send($value) {}
function throw(Throwable $exception) {}
function getReturn() {}
}