pub fn div_ceil(dividend: i64, divisor: i64) -> i64
Returns the mathematical ceiling of dividend / divisor.
dividend / divisor
Panics when divisor is zero or when the exact quotient does not fit in i64.
divisor
i64