(val float64, p *float64)
| 6 | type float64Value float64 |
| 7 | |
| 8 | func newFloat64Value(val float64, p *float64) *float64Value { |
| 9 | *p = val |
| 10 | return (*float64Value)(p) |
| 11 | } |
| 12 | |
| 13 | func (f *float64Value) Set(s string) error { |
| 14 | v, err := strconv.ParseFloat(s, 64) |
no outgoing calls
no test coverage detected