| 3 | import "strconv" |
| 4 | |
| 5 | type Float64Flag struct { |
| 6 | Name string |
| 7 | Value float64 |
| 8 | Usage string |
| 9 | ShortName string |
| 10 | Hidden bool |
| 11 | } |
| 12 | |
| 13 | func (f *Float64Flag) Set(v string) { |
| 14 | i, _ := strconv.ParseFloat(v, 64) |
nothing calls this directly
no outgoing calls
no test coverage detected