mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-12 17:27:50 +08:00
8 lines
154 B
Go
8 lines
154 B
Go
package util
|
|
|
|
// CeilDiv computes ceil(float(a)/b) but does not actually use float
|
|
// arithmetics.
|
|
func CeilDiv(a, b int) int {
|
|
return (a + b - 1) / b
|
|
}
|