package math func MinUint64(x, y uint64) uint64 { if x < y { return x } return y }