(names []string, arg interface{}, m *reflectx.Mapper)
| 161 | } |
| 162 | |
| 163 | func bindAnyArgs(names []string, arg interface{}, m *reflectx.Mapper) ([]interface{}, error) { |
| 164 | if maparg, ok := convertMapStringInterface(arg); ok { |
| 165 | return bindMapArgs(names, maparg) |
| 166 | } |
| 167 | return bindArgs(names, arg, m) |
| 168 | } |
| 169 | |
| 170 | // private interface to generate a list of interfaces from a given struct |
| 171 | // type, given a list of names to pull out of the struct. Used by public |
no test coverage detected