module Kind::Function::Behavior
Public Class Methods
extended(base)
click to toggle source
# File lib/kind/function.rb, line 8 def self.extended(base) base.send(:alias_method, :[], :call) base.send(:alias_method, :===, :call) base.send(:alias_method, :yield, :call) end