Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の Ruby ファイバーは、最初の再開時に StopIteration 例外を発生させますが、その後は発生しません。再開するたびに例外が発生するファイバーを作成することはできますか?
f = Fiber.new do while true raise StopIteration end end