class Transformer::FirstYielder
Public Instance Methods
await()
click to toggle source
# File lib/coroutines/base.rb, line 542 def await Fiber.yield(:await) end
yield(*args)
click to toggle source
# File lib/coroutines/base.rb, line 545 def yield(*args) Fiber.yield(:yield, *args) self end