Browse Source

Fix ToBool() to support int32, int64, uint, uint32, uint64, float32, float64

pull/84/head
Huyen Lam 4 years ago
parent
commit
5d93088034
1 changed files with 7 additions and 2 deletions
  1. +7
    -2
      caste.go

+ 7
- 2
caste.go View File

@@ -79,8 +79,13 @@ func ToBoolE(i interface{}) (bool, error) {
return b, nil
case nil:
return false, nil
case int:
if i.(int) != 0 {
case int, int32, int64, uint, uint32, uint64:
if b != 0 {
return true, nil
}
return false, nil
case float32, float64:
if b != 0.0 {
return true, nil
}
return false, nil


Loading…
Cancel
Save