class Affect::Fiber::Escape

Public Class Methods

new(&block) click to toggle source
# File lib/affect/fiber.rb, line 19
def initialize(&block)
  @block = block
end

Public Instance Methods

call(*args) click to toggle source
# File lib/affect/fiber.rb, line 23
def call(*args)
  @block.(*args)
end