woj-server/pkg/utils/if.go
2022-10-30 22:40:59 +08:00

10 lines
137 B
Go

package utils
func If[T any](condition bool, trueVal, falseVal T) T {
if condition {
return trueVal
} else {
return falseVal
}
}