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