@ -43,7 +43,10 @@ type AnyType struct {
//
// Date : 18:21 2023/6/1
func (at *AnyType) IsNil() bool {
return at.data == nil
if at.data == nil {
return true
}
return reflect.ValueOf(at.data).IsNil()
// Type 获取类型
The note is not visible to the blocked user.