elvish/util/ceildiv.go

7 lines
139 B
Go
Raw Normal View History

2016-02-28 08:47:56 +08:00
package util
2016-02-12 20:31:24 +08:00
// CeilDiv computes ceil(float(a)/b) without using float arithmetics.
func CeilDiv(a, b int) int {
return (a + b - 1) / b
}