1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 00:22:41 +08:00
Files
go-mixed/mathx/int.go
2022-03-27 10:20:59 +08:00

20 lines
241 B
Go

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