class Tzispa::Annotations::Builtin::Lazy

Public Instance Methods

call(method, *args, &block) click to toggle source
# File lib/tzispa/annotations/builtin/lazy.rb, line 18
def call(method, *args, &block)
  Proxy.new { method.call(*args, &block) }
end