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