How to raise StopIteration repeatedly from Ruby fiber

395 Views Asked by At

The following Ruby fiber raises a StopIteration exception the first time it is resumed, but not subsequently. Is it possible to make a fiber which raises the exception every time it is resumed?

f = Fiber.new do
  while true
    raise StopIteration
  end
end
0

There are 0 best solutions below