Generator (computer programming): Difference between revisions

Content deleted Content added
m Undid revision 1160900223 by Frap (talk): this change isn't consistent with the PHP RFC for generators
PHP: type hint
Line 295:
Infinite Fibonacci sequence:
<syntaxhighlight lang="php">
function fibonacci(): \Generator
{
$last = 0;