<?php function gen() { yield 1; yield 2; } $it = gen(); $it->rewind(); $it->valid(); $it->current(); $it->rewind();
You have javascript disabled. You will not be able to edit any code.