Returns whether this decimal number has a non-zero fractional part.
public function hasNonZeroFractionalPart() : bool { return $this->getFractionalPart() !== \str_repeat('0', $this->scale); }