(myMap map[string]interface{})
| 32 | } |
| 33 | |
| 34 | func InterfaceMapSortedKeys(myMap map[string]interface{}) []string { |
| 35 | keys := InterfaceMapKeys(myMap) |
| 36 | sort.Strings(keys) |
| 37 | return keys |
| 38 | } |
| 39 | |
| 40 | func InterfaceMapKeysUnsafe(myMap interface{}) []string { |
| 41 | keyValues := reflect.ValueOf(myMap).MapKeys() |
no test coverage detected