Sha256: bf9e3db79d50940e7c05fa55ea28ebcd08cecd948d60cb40175a40c01d24231b
Contents?: true
Size: 374 Bytes
Versions: 68
Compression:
Stored size: 374 Bytes
Contents
# <!-- rdoc-file=cont.c --> # Raised when an invalid operation is attempted on a Fiber, in particular when # attempting to call/resume a dead fiber, attempting to yield from the root # fiber, or calling a fiber across threads. # # fiber = Fiber.new{} # fiber.resume #=> nil # fiber.resume #=> FiberError: dead fiber called # class FiberError < StandardError end
Version data entries
68 entries across 68 versions & 3 rubygems