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

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