Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
These similar methods exist in v2_5_5:
abs()
public
Returns the absolute value of big.
-1234567890987654321.abs
Show source
static VALUE
rb_big_abs(VALUE x)
{
if (!BIGNUM_SIGN(x)) {
x = rb_big_clone(x);
BIGNUM_SET_SIGN(x, 1);
}
return x;
}