String implements the [flag.Value] interface for *uint32Value.
()
| 25 | |
| 26 | // String implements the [flag.Value] interface for *uint32Value. |
| 27 | func (i *uint32Value) String() (out string) { |
| 28 | return strconv.FormatUint(uint64(*i), 10) |
| 29 | } |
| 30 | |
| 31 | // float32Value is an float32 that can be defined as a flag for [flag.FlagSet]. |
| 32 | type float32Value float32 |
no outgoing calls