func min64()

in writer.go [429:434]


func min64(x, y uint64) uint64 {
	if x < y {
		return x
	}
	return y
}