Method: Complex#conj
- Defined in:
- complex.c
permalink #conj ⇒ Object #conjugate ⇒ Object
[View source]
1262 1263 1264 1265 1266 1267 |
# File 'complex.c', line 1262
VALUE
rb_complex_conjugate(VALUE self)
{
get_dat1(self);
return f_complex_new2(CLASS_OF(self), dat->real, f_negate(dat->imag));
}
|