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