Returns true if n is a safe int.
true
n
int
bool isSafeIntegerByBigInt(BigInt n) { return n <= _maxSafeBigInt && n >= _minSafeBigInt; }