= private = protected
abs()
Returns the absolute value of fix.
-12345.abs #=> 12345 12345.abs #=> 12345
static VALUE fix_abs(VALUE fix) { long i = FIX2LONG(fix); if (i < 0) i = -i; return LONG2NUM(i); }