ipld-eth-server/vendor/github.com/ipfs/go-ipfs/thirdparty/math2/math2.go
2019-12-02 13:24:46 -06:00

10 lines
122 B
Go

package math2
// IntMin returns the smaller of x or y.
func IntMin(x, y int) int {
if x < y {
return x
}
return y
}