Returns the value of x rounded upward to the next integer (toward positive infinity). This operation is silent, doesn't throw any exception.
assert (ceil(decimal32("123.456")) == 124); assert (ceil(decimal32("-123.456")) == -123);
See Implementation
Returns the value of x rounded upward to the next integer (toward positive infinity). This operation is silent, doesn't throw any exception.