(s string, d int, c string)
| 319 | } |
| 320 | |
| 321 | func (f testFlags) Int(s string, d int, c string) *int { |
| 322 | if i, ok := f.ints[s]; ok { |
| 323 | return &i |
| 324 | } |
| 325 | return &d |
| 326 | } |
| 327 | |
| 328 | func (f testFlags) Float64(s string, d float64, c string) *float64 { |
| 329 | if g, ok := f.floats[s]; ok { |
nothing calls this directly
no outgoing calls
no test coverage detected