iedc-go/vendor/github.com/chanxuehong/util/conv.go

11 lines
151 B
Go
Raw Normal View History

2023-03-02 19:12:15 +00:00
package util
// 转换 bool 类型到 int 类型
// true 转换为 1, false 转换为 0
func Bool2Int(b bool) int {
if b {
return 1
}
return 0
}