Returns the absolute value of this number.
public function abs() : BigInteger { return $this->isNegative() ? $this->negated() : $this; }