<?php function generator(): iterable { yield 'x' => 1; yield 2; yield 3; } $iterable = generator(); var_dump($iterable); var_export([...$iterable]);
You have javascript disabled. You will not be able to edit any code.