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