るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.012秒)
トップページ > クラス:Module[x] > クエリ:unboundmethod[x] > クエリ:bind[x]

別のキーワード

  1. _builtin unboundmethod
  2. unboundmethod to_s
  3. unboundmethod name
  4. unboundmethod arity

ライブラリ

検索結果

Module#instance_method(name) -> UnboundMethod (124.0)

self のインスタンスメソッド name をオブジェクト化した UnboundMethod を返します。

...ド name をオブジェクト化した UnboundMethod を返します。

@param name メソッド名を Symbol または String で指定します。

@raise NameError self に存在しないメソッドを指定した場合に発生します。

@see Module#public_instance_method, Object#method

/...
...d(:do_a),
"d" => instance_method(:do_d),
"e" => instance_method(:do_e),
"v" => instance_method(:do_v)
}
def interpret(string)
string.each_char {|b| Dispatcher[b].bind(self).call }
end
end

interpreter = Interpreter.new
interpreter.interpret('dave')
# => Hello there, Dave!
//}...