Method: BigDecimal#>

Defined in:
bigdecimal.c

#>(r) ⇒ Object

a > b

Returns true if a is greater than b. Values may be coerced to perform the comparison (see ==, coerce).



817
818
819
820
821
# File 'bigdecimal.c', line 817

static VALUE
BigDecimal_gt(VALUE self, VALUE r)
{
    return BigDecimalCmp(self, r, '>');
}