Skip to content
Snippets Groups Projects
GetSetByte.go 175 B
Newer Older
  • Learn to ignore specific revisions
  • package issetter
    
    func GetSetByte(
    	isCondition bool,
    	trueValue byte,
    	falseValue byte,
    ) Value {
    	if isCondition {
    		return Value(trueValue)
    	}
    
    	return Value(falseValue)
    }