24件ヒット
[1-24件を表示]
(0.087秒)
ライブラリ
- ビルトイン (24)
クラス
- NilClass (12)
- UnboundMethod (12)
検索結果
-
NilClass
# to _ c -> Complex (21108.0) -
0+0i を返します。
...0+0i を返します。
//emlist[例][ruby]{
nil.to_c # => (0+0i)
//}... -
UnboundMethod
# owner -> Class | Module (124.0) -
このメソッドが定義されている class か module を返します。
...このメソッドが定義されている class か module を返します。
//emlist[例][ruby]{
Integer.instance_method(:to_s).owner # => Integer
Integer.instance_method(:to_c).owner # => Numeric
Integer.instance_method(:hash).owner # => Kernel
//}...