You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/core/mathx/int.go

20 lines
241 B
Go

4 years ago
package mathx
// MaxInt returns the larger one of a and b.
4 years ago
func MaxInt(a, b int) int {
if a > b {
return a
}
return b
4 years ago
}
// MinInt returns the smaller one of a and b.
4 years ago
func MinInt(a, b int) int {
if a < b {
return a
}
return b
4 years ago
}