mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-09-26 18:51:13 +08:00
10 lines
109 B
Go
10 lines
109 B
Go
package util
|
|
|
|
func Conditoinal[T any](cond bool, t, f T) T {
|
|
if cond {
|
|
return t
|
|
} else {
|
|
return f
|
|
}
|
|
}
|