StringMapFieldIndex is used to extract a field of type map[string]string from an object using reflection and builds an index on that field. Note that although FromArgs in theory supports using either one or two arguments, there is a bug: FromObject only creates an index using key/value, and does no
| 211 | // |
| 212 | // TODO: Fix this in the next major bump. |
| 213 | type StringMapFieldIndex struct { |
| 214 | Field string |
| 215 | Lowercase bool |
| 216 | } |
| 217 | |
| 218 | var MapType = reflect.MapOf(reflect.TypeOf(""), reflect.TypeOf("")).Kind() |
| 219 |
nothing calls this directly
no outgoing calls
no test coverage detected