(v reflect.Value, field string)
| 324 | } |
| 325 | |
| 326 | func fieldByName(v reflect.Value, field string) reflect.Value { |
| 327 | return v.FieldByNameFunc(func(s string) bool { |
| 328 | return strings.EqualFold(field, s) |
| 329 | }) |
| 330 | } |
no outgoing calls
no test coverage detected