class
Ruby latest stable (v2_5_5)
-
0 notes
- Superclass:
IndexError
Raised to stop the iteration, in particular by Enumerator#next. It is rescued by Kernel#loop.
loop do puts "Hello" raise StopIteration puts "World" end puts "Done!"
produces:
Hello Done!