<?phpfunction foo( iterable $iterable ){ foreach ( $iterable as $value ) { // ... }}?>
<?phpfunction gen(): iterable{ yield 1; yield 2; yield 3;}