tripnomics_7.5.5/pkg/util/math.go
venbatechnologies@gmail.com 91fce5c4bf Initial commit
2021-07-05 13:49:40 +05:30

10 lines
121 B
Go

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