/* * call-seq: * big.to_f -> float * * Converts <i>big</i> to a <code>Float</code>. If <i>big</i> doesn't * fit in a <code>Float</code>, the result is infinity. * */ static VALUE rb_big_to_f(x) VALUE x; { return rb_float_new(rb_big2dbl(x)); }