Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-06-28から1日間の記事一覧

Ruby | Method | unbind

概要 Method#unbind -> UnboundMethod 詳細 self のレシーバとの関連を取り除いた UnboundMethod オブジェクトを生成して返却。 サンプルコード require 'tbpgr_utils' class Hoge def hoge "hoge" end end h1 = Hoge.new m1 = h1.method(:hoge) bulk_puts_e…