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