36件ヒット
[1-36件を表示]
(0.047秒)
別のキーワード
種類
- インスタンスメソッド (24)
- 定数 (12)
ライブラリ
- forwardable (36)
キーワード
-
FORWARDABLE
_ VERSION (12) - delegate (12)
-
instance
_ delegate (12)
検索結果
先頭3件
-
Forwardable
:: FORWARDABLE _ VERSION -> String (9202.0) -
forwardable ライブラリのバージョンを返します。
...
forwardable ライブラリのバージョンを返します。... -
Forwardable
# delegate(hash) -> () (3007.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"... -
Forwardable
# instance _ delegate(hash) -> () (3007.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"...