func math.Ceil

6 uses

	math (current package)
		floor.go#L36: func Ceil(x float64) float64

	github.com/beorn7/perks/quantile
		stream.go#L160: 		i := int(math.Ceil(float64(l) * q))
		stream.go#L273: 	t := math.Ceil(q * s.n)
		stream.go#L274: 	t += math.Ceil(s.ƒ(s, t) / 2)

	github.com/jmespath/go-jmespath
		functions.go#L441: 	return math.Ceil(val), nil

	google.golang.org/grpc/credentials/alts/internal/conn
		record.go#L210: 	numOfFrames := int(math.Ceil(float64(len(b)) / float64(p.payloadLengthLimit)))