This commit is contained in:
2022-11-19 16:58:18 +01:00
parent 06a37f37b7
commit 9d9a6f1c6e

View File

@@ -7,3 +7,11 @@ func FormatBool(v bool, strTrue string, strFalse string) string {
return strFalse
}
}
func Conditional[T any](v bool, resTrue T, resFalse T) T {
if v {
return resTrue
} else {
return resFalse
}
}