type flag.uint64Value
8 uses
flag (current package)
flag.go#L202: type uint64Value uint64
flag.go#L204: func newUint64Value(val uint64, p *uint64) *uint64Value {
flag.go#L206: return (*uint64Value)(p)
flag.go#L209: func (i *uint64Value) Set(s string) error {
flag.go#L214: *i = uint64Value(v)
flag.go#L218: func (i *uint64Value) Get() interface{} { return uint64(*i) }
flag.go#L220: func (i *uint64Value) String() string { return strconv.FormatUint(uint64(*i), 10) }
flag.go#L500: case *uintValue, *uint64Value:
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |