Select Git revision
-
Md. Alim Ul Karim authored
"Make necessary changes for PathsChmods + Add new constants + Add interfaces for future usages + Dynamic Type"
Md. Alim Ul Karim authored"Make necessary changes for PathsChmods + Add new constants + Add interfaces for future usages + Dynamic Type"
GetSetByte.go 175 B
package issetter
func GetSetByte(
isCondition bool,
trueValue byte,
falseValue byte,
) Value {
if isCondition {
return Value(trueValue)
}
return Value(falseValue)
}