るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.211秒)

別のキーワード

  1. etc sc_xopen_enh_i18n
  2. rsa n=
  3. rsa n
  4. openssl n
  5. pop n_mails

ライブラリ

検索結果

Forwardable#instance_delegate(hash) -> () (12214.0)

メソッドの委譲先を設定します。

...Symbol
String かその配列で指定します。


例:

require 'forwardable'
class Zap
extend Forwardable
delegate :length => :@str
delegate [:first, :last] => :@arr
def initialize
@arr = %w/foo bar baz/
@str = "world"
end
end

zap...
...= Zap.new
zap.length # => 5
zap.first # => "foo"
zap.last # => "baz"...