(v reflect.Value, field string)
| 250 | } |
| 251 | |
| 252 | func fieldByName(v reflect.Value, field string) reflect.Value { |
| 253 | return v.FieldByNameFunc(func(s string) bool { |
| 254 | return strings.EqualFold(field, s) |
| 255 | }) |
| 256 | } |
no outgoing calls
no test coverage detected