ToStringMapInt64E casts any value to a map[string]int64 type.
(i any)
| 201 | |
| 202 | // ToStringMapInt64E casts any value to a map[string]int64 type. |
| 203 | func ToStringMapInt64E(i any) (map[string]int64, error) { |
| 204 | return toStringMapIntE(i, ToInt64, ToInt64E) |
| 205 | } |
| 206 | |
| 207 | // jsonStringToObject attempts to unmarshall a string as JSON into |
| 208 | // the object passed as pointer. |
no test coverage detected
searching dependent graphs…