Files
opencloud/vendor/github.com/bluele/gcache/utils.go
2023-04-19 20:24:34 +02:00

16 lines
149 B
Go

package gcache
func minInt(x, y int) int {
if x < y {
return x
}
return y
}
func maxInt(x, y int) int {
if x > y {
return x
}
return y
}