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