cutego/pkg/util/my_util.go

10 lines
180 B
Go
Raw Normal View History

package util
// IF 三元表达式
func IF(condition bool, trueValue interface{}, falseValue interface{}) interface{} {
if condition {
return trueValue
}
return falseValue
}