mirror of
https://github.com/sigcn/pg.git
synced 2025-09-27 01:05:51 +08:00
9 lines
98 B
Go
9 lines
98 B
Go
package langs
|
|
|
|
func IfElse[T any](cond bool, v1, v2 T) T {
|
|
if cond {
|
|
return v1
|
|
}
|
|
return v2
|
|
}
|