るりまサーチ

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

別のキーワード

  1. numeric step
  2. _builtin numeric
  3. numeric to_c
  4. numeric conj
  5. numeric to_int

ライブラリ

クラス

検索結果

Numeric#to_c -> Complex (39138.0)

自身を複素数 (Complex) に変換します。Complex(self, 0) を返します。

...に変換します。Complex(self, 0) を返します。

//emlist[例][ruby]{
1.to_c # => (1+0i)
-1.to_c # => (-1+0i)
1.0.to_c # => (1.0+0i)
Rational(1, 2).to_c # => ((1/2)+0i)
//}

Numeric
のサブクラスは、このメソッドを適切に再定義しなけ...

UnboundMethod#owner -> Class | Module (19.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
//}...