[Solved] Print the key/value types of a Golang map
Try not to use reflect. But if you must use reflect: A reflect.Value value has a Type() function, which returns a reflect.Type value. If that type’s Kind() is reflect.Map, that reflect.Value is a value of type map[T1]T2 for some types T1 and T2, where T1 is the key type and T2 is the element type. … Read more