Files
grafana/pkg/util/math.go
T

10 lines
121 B
Go
Raw Normal View History

package util
// MinInt returns the smaller of x or y.
func MinInt(x, y int) int {
if x > y {
return y
}
return x
}