424件ヒット
[401-424件を表示]
(0.091秒)
別のキーワード
クラス
-
Encoding
:: Converter (24) - GDBM (12)
- Hash (52)
- Method (12)
-
Rake
:: FileList (24) - String (276)
- StringScanner (12)
- UnboundMethod (12)
検索結果
-
Method
# arity -> Integer (107.0) -
メソッドが受け付ける引数の数を返します。
...od(:v).arity #=> 1
p c.method(:w).arity #=> -1
p c.method(:x).arity #=> 2
p c.method(:y).arity #=> -3
p c.method(:z).arity #=> -3
s = "xyz"
s.method(:size).arity #=> 0
s.method(:replace).arity #=> 1
s.method(:squeeze).arity #=> -1
s.method(:count).arity #=> -1
//}... -
UnboundMethod
# arity -> Integer (107.0) -
メソッドが受け付ける引数の数を返します。
...).arity #=> 2
p C.instance_method(:five).arity #=> -3
p C.instance_method(:six).arity #=> -3
String.instance_method(:size).arity #=> 0
String.instance_method(:replace).arity #=> 1
String.instance_method(:squeeze).arity #=> -1
String.instance_method(:count).arity #=> -1
//}...