✅ Rounds the number toward positive infinity if the result is representable. If rounding would
cause an overflow, returns the original value unchanged.
✅ Rounds the number toward positive infinity to the specified number of fractional digits. If
rounding would cause an overflow, returns the original value unchanged.
✅ Rounds the number toward negative infinity if the result is representable. If rounding would
cause an overflow, returns the original value unchanged.
✅ Rounds the number toward negative infinity to the specified number of fractional digits. If
rounding would cause an overflow, returns the original value unchanged.
✅ Rounds the number to the nearest integer, away from zero on tie. If rounding would cause an
overflow, returns the nearest representable result instead.
✅ Rounds the number to the nearest value with the specified number of fractional digits, away
from zero on tie. If rounding would cause an overflow, returns the closest representable result
instead.