woj-server/pkg/utils/if.go

10 lines
137 B
Go
Raw Permalink Normal View History

2022-09-07 23:34:37 +08:00
package utils
2022-10-30 22:40:59 +08:00
func If[T any](condition bool, trueVal, falseVal T) T {
2022-09-07 23:34:37 +08:00
if condition {
return trueVal
} else {
return falseVal
}
}