Uint64Opt represents a uint64.
| 31 | |
| 32 | // Uint64Opt represents a uint64. |
| 33 | type Uint64Opt struct { |
| 34 | value *uint64 |
| 35 | } |
| 36 | |
| 37 | // Set a new value on the option |
| 38 | func (i *Uint64Opt) Set(s string) error { |
nothing calls this directly
no outgoing calls
no test coverage detected