(val uint64, p *uint64)
| 6 | type uint64Value uint64 |
| 7 | |
| 8 | func newUint64Value(val uint64, p *uint64) *uint64Value { |
| 9 | *p = val |
| 10 | return (*uint64Value)(p) |
| 11 | } |
| 12 | |
| 13 | func (i *uint64Value) Set(s string) error { |
| 14 | v, err := strconv.ParseUint(s, 0, 64) |
no outgoing calls
no test coverage detected