This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
prec_f()
public
Returns a Float converted from
num. It is equivalent to prec(Float).
/*
* call-seq:
* num.prec_f => Float
*
* Returns a +Float+ converted from _num_. It is equivalent
* to <code>prec(Float)</code>.
*/
static VALUE
prec_prec_f(x)
VALUE x;
{
VALUE klass = rb_cFloat;
return rb_funcall(x, prc_pr, 1, klass);
}