abstract fun divideCeil(value: T): T
(source)abstract fun divideCeil(value: Long): T
(source)
Returns a value that is ceiling(this / value)
.
value
- The amount to divide this value by.
ArithmeticException
- value
== 0.
Return
this / value + ( this % value == 0 ? 0 : 1)