gitlab.com/evatix-go/core@v1.3.55/issetter/GetSetByte.go (about)

     1  package issetter
     2  
     3  func GetSetByte(
     4  	isCondition bool,
     5  	trueValue byte,
     6  	falseValue byte,
     7  ) Value {
     8  	if isCondition {
     9  		return Value(trueValue)
    10  	}
    11  
    12  	return Value(falseValue)
    13  }