Ruby 3.3 リファレンスマニュアル

instance method Complex#real?

real? -> false[permalink][rdoc][edit]

常に false を返します。


p (2+3i).real? # => false
p (2+0i).real? # => false

[SEE_ALSO] Numeric#real?