Method: Complex#to_s
- Defined in:
- complex.c
#to_s ⇒ String
1628 1629 1630 1631 1632 |
# File 'complex.c', line 1628
static VALUE
nucomp_to_s(VALUE self)
{
return f_format(self, rb_usascii_str_new2(""), rb_String);
}
|
1628 1629 1630 1631 1632 |
# File 'complex.c', line 1628
static VALUE
nucomp_to_s(VALUE self)
{
return f_format(self, rb_usascii_str_new2(""), rb_String);
}
|