Decimal.ceil

Calcurate ceil value.

struct Decimal
const @nogc nothrow pure scope
ceil
()

Return Value

Type: Decimal

ceil value.

Examples

assert(Decimal(10, 1).ceil == Decimal(1, 0));
assert(Decimal(11, 1).ceil == Decimal(2, 0));
assert(Decimal(10001, 4).ceil == Decimal(2, 0));

Meta