git-lfs/tools/math.go
2017-04-27 16:34:51 -06:00

38 lines
534 B
Go

package tools
// MinInt returns the smaller of two `int`s, "a", or "b".
func MinInt(a, b int) int {
if a < b {
return a
}
return b
}
// MaxInt returns the greater of two `int`s, "a", or "b".
func MaxInt(a, b int) int {
if a > b {
return a
}
return b
}
// MinInt64 returns the smaller of two `int`s, "a", or "b".
func MinInt64(a, b int64) int64 {
if a < b {
return a
}
return b
}
// MaxInt64 returns the greater of two `int`s, "a", or "b".
func MaxInt64(a, b int64) int64 {
if a > b {
return a
}
return b
}