Flowdock
numerator() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
static VALUE
float_numerator(VALUE self)
{
    double d = RFLOAT_VALUE(self);
    if (isinf(d) || isnan(d))
        return self;
    return rb_call_super(0, 0);
}
Register or log in to add new notes.