ceil

ceil

[code]
func Ceil(value float64) float64 {
	return math.Ceil(value)
}
[/code]