36件ヒット
[1-36件を表示]
(0.025秒)
種類
- インスタンスメソッド (24)
- 定数 (12)
キーワード
-
FORWARDABLE
_ VERSION (12) - delegate (12)
-
instance
_ delegate (12)
検索結果
先頭3件
-
Forwardable
:: FORWARDABLE _ VERSION -> String (104.0) -
forwardable ライブラリのバージョンを返します。
...
forwardable ライブラリのバージョンを返します。... -
Forwardable
# delegate(hash) -> () (9.0) -
メソッドの委譲先を設定します。
...ブジェクトが値の
Hash を指定します。キーは Symbol、
String かその配列で指定します。
//emlist[例][ruby]{
require 'forwardable'
class Zap
extend Forwardable
delegate :length => :@str
delegate [:first, :last] => :@arr
def initia... -
Forwardable
# instance _ delegate(hash) -> () (9.0) -
メソッドの委譲先を設定します。
...ブジェクトが値の
Hash を指定します。キーは Symbol、
String かその配列で指定します。
//emlist[例][ruby]{
require 'forwardable'
class Zap
extend Forwardable
delegate :length => :@str
delegate [:first, :last] => :@arr
def initia...