Kind returns the reflect kind of the value.
()
| 180 | |
| 181 | // Kind returns the reflect kind of the value. |
| 182 | func (v *Value) Kind() reflect.Kind { |
| 183 | return v.value.Kind() |
| 184 | } |
| 185 | |
| 186 | // UnpackKinds unpacks the reflect value until it no longer matches the given kinds. |
| 187 | func (v *Value) UnpackKinds(kinds ...reflect.Kind) *Value { |
no outgoing calls