るりまサーチ

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

別のキーワード

  1. _builtin >
  2. bigdecimal >
  3. module >
  4. integer >
  5. complex >

ライブラリ

クラス

モジュール

キーワード

検索結果

<< < ... 5 6 7 >>

UnboundMethod#arity -> Integer (107.0)

メソッドが受け付ける引数の数を返します。

...#=> 0
p C.instance_method(:two).arity #=> 1
p C.instance_method(:three).arity #=> -1
p C.instance_method(:four).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
//}...
<< < ... 5 6 7 >>