(p *float64, _ string, d float64, _ string)
| 136 | } |
| 137 | |
| 138 | func (f inlineFlagset) Float64Var(p *float64, _ string, d float64, _ string) { |
| 139 | *p = d |
| 140 | } |
| 141 | |
| 142 | func (f inlineFlagset) StringVar(p *string, s, d, _ string) { |
| 143 | if t, ok := f.strings[s]; ok { |
nothing calls this directly
no outgoing calls
no test coverage detected