Parcourir la source

添加反射函数

yjp il y a 6 mois
Parent
commit
5c120f0b5b
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      reflectutils/value.go

+ 1 - 1
reflectutils/value.go

@@ -40,7 +40,7 @@ func SliceValueElem(v reflect.Value) reflect.Value {
 	return elem
 }
 
-func IsSliceValueOf(v reflect.Type, elementKind reflect.Kind) bool {
+func IsSliceValueOf(v reflect.Value, elementKind reflect.Kind) bool {
 	return v.Kind() == reflect.Slice && v.Elem().Kind() == elementKind
 }