iedc-go/vendor/github.com/chanxuehong/util/conv.go
2023-03-03 03:12:15 +08:00

11 lines
151 B
Go

package util
// 转换 bool 类型到 int 类型
// true 转换为 1, false 转换为 0
func Bool2Int(b bool) int {
if b {
return 1
}
return 0
}