This commit is contained in:
Mike Schwörer 2022-11-19 16:58:18 +01:00
parent 06a37f37b7
commit 9d9a6f1c6e
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF

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
}
}