|
@@ -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()
|
|
|
+
|
|
|
+ return lType.ConvertibleTo(rType)
|
|
|
+ }
|
|
|
+ return false
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
|
|
|
func (s Map) Int(key string, defaultVal int64) int64 {
|