0x4a52466c696e74 před 2 roky
rodič
revize
60572c0151
2 změnil soubory, kde provedl 11 přidání a 0 odebrání
  1. 10 0
      json/map.go
  2. 1 0
      json/z_test.go

+ 10 - 0
json/map.go

@@ -74,6 +74,16 @@ func val(l, r interface{}) (res reflect.Value) {
 	return
 }
 
+func (s Map) IsInt(key string) bool {
+	if iface, check := s[key]; check {
+		rType := reflect.ValueOf(int(0)).Type()
+		lType := reflect.ValueOf(iface).Type()
+		//log.Println(rType, lType, reflect.ValueOf(iface).Convert(rType))
+		return lType.ConvertibleTo(rType)
+	}
+	return false
+}
+
 // Int returns int64 value by key.
 // If key isn't defined will be returned defaultVal arg value
 func (s Map) Int(key string, defaultVal int64) int64 {

+ 1 - 0
json/z_test.go

@@ -24,6 +24,7 @@ func TestJSON(t *testing.T) {
 	t.Log(string(m.JSON()))
 	t.Log(string(m.JSONIndent("", "\t")))
 	t.Log(m.StringVal("fl", ""))
+	t.Log("ISINT", m.IsInt("fl"))
 }
 
 func TestInterface(t *testing.T) {