yjp 6 сар өмнө
parent
commit
5c120f0b5b
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  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
 }