real -> Numeric
[permalink][rdoc][edit]-
自身を返します。
Numeric のサブクラスは、このメソッドを適切に再定義しなければなりません。
10.real # => 10 -10.real # => -10 0.1.real # => 0.1 Rational(2, 3).real # => (2/3)
[SEE_ALSO] Numeric#imag、Complex#real
real -> Numeric
[permalink][rdoc][edit]自身を返します。
Numeric のサブクラスは、このメソッドを適切に再定義しなければなりません。
10.real # => 10
-10.real # => -10
0.1.real # => 0.1
Rational(2, 3).real # => (2/3)
[SEE_ALSO] Numeric#imag、Complex#real