elvish/util/ceildiv.go

8 lines
154 B
Go
Raw Normal View History

package util
2014-01-30 22:04:16 +08:00
// CeilDiv computes ceil(float(a)/b) but does not actually use float
// arithmetics.
func CeilDiv(a, b int) int {
return (a + b - 1) / b
}