to_proc -> Proc
[permalink][rdoc][edit]-
self を call する Proc オブジェクトを生成して返します。
class Foo def foo "foo" end end m = Foo.new.method(:foo) # => #<Method: Foo#foo> pr = m.to_proc # => #<Proc:0x007f874d026008 (lambda)> pr.call # => "foo"
to_proc -> Proc
[permalink][rdoc][edit]self を call する Proc オブジェクトを生成して返します。
class Foo
def foo
"foo"
end
end
m = Foo.new.method(:foo) # => #<Method: Foo#foo>
pr = m.to_proc # => #<Proc:0x007f874d026008 (lambda)>
pr.call # => "foo"