Method: Complex#real?
- Defined in:
- complex.c
permalink #Complex(1) ⇒ false #Complex(1, 2) ⇒ false
Returns false, even if the complex number has no imaginary part.
1276 1277 1278 1279 1280 |
# File 'complex.c', line 1276
static VALUE
nucomp_false(VALUE self)
{
return Qfalse;
}
|