= private = protected
coerce(p1)
Returns an array with both aNumeric and flt represented as Float objects. This is achieved by converting aNumeric to a Float.
1.2.coerce(3) #=> [3.0, 1.2] 2.5.coerce(1.1) #=> [1.1, 2.5]
static VALUE flo_coerce(VALUE x, VALUE y) { return rb_assoc_new(rb_Float(y), x); }