mirror of
https://github.com/jefferyjob/go-easy-utils.git
synced 2025-09-27 03:15:55 +08:00
11 lines
153 B
Go
11 lines
153 B
Go
package mathx
|
|
|
|
import (
|
|
"math"
|
|
)
|
|
|
|
// Ceil 对float数据向上取整
|
|
func Ceil[T float32 | float64](num T) int {
|
|
return int(math.Ceil(float64(num)))
|
|
}
|