abs method

BigRational abs()

Implementation

BigRational abs() {
  if (isPositive) return this;
  return ~this;
}