xmtop/utils/math.go

9 lines
81 B
Go
Raw Normal View History

2019-03-09 05:55:50 +08:00
package utils
func MaxInt(a, b int) int {
if a > b {
return a
}
return b
}