GetType return the underlying type.
(v any)
| 47 | |
| 48 | // GetType return the underlying type. |
| 49 | func GetType(v any) reflect.Type { |
| 50 | return reflect.Indirect(reflect.ValueOf(v)).Type() |
| 51 | } |
| 52 | |
| 53 | // CutString slices s around the first instance of sep, |
| 54 | // returning the text before and after sep. |
no outgoing calls
searching dependent graphs…