tt/utils/u.go
2024-05-28 08:47:31 +08:00

9 lines
85 B
Go

package utils
func Ifs[T any](a bool, b, c T) T {
if a {
return b
}
return c
}