lib/ting/procable.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Ting
  module Procable
    def to_proc
      method(:call).to_proc
    end

    def memoize
      MemoizeCall.new(self)
    end
  end
end