gitlab.com/evatix-go/core@v1.3.55/coremath/MinByte.go (about)

     1  package coremath
     2  
     3  //goland:noinspection ALL
     4  func MinByte(v1, v2 byte) byte {
     5  	if v1 > v2 {
     6  		return v2
     7  	}
     8  
     9  	return v1
    10  }