This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
induced_from(p1)
public
Convert obj to a Fixnum. Works with numeric
parameters. Also works with Symbols, but this is deprecated.
/*
* call-seq:
* Fixnum.induced_from(obj) => fixnum
*
* Convert <code>obj</code> to a Fixnum. Works with numeric parameters.
* Also works with Symbols, but this is deprecated.
*/
static VALUE
rb_fix_induced_from(klass, x)
VALUE klass, x;
{
return rb_num2fix(x);
}