Checks if this number is strictly greater than the given one.
public final function isGreaterThan(BigNumber|int|float|string $that) : bool { return $this->compareTo($that) > 0; }