Iterable psuedo-type

<?php
function foo( iterable $iterable )
{
    foreach ( $iterable as $value )
    {
        // ...
    }
}
?>
array or instance of Traversable

✔ Generators are also Iterable

<?php
function gen(): iterable
{
    yield 1;
    yield 2;
    yield 3;
}