MCPcopy Index your code
hub / github.com/cloudfoundry/cli / IntFlag

Struct IntFlag

cf/flags/int.go:5–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import "strconv"
4
5type IntFlag struct {
6 Name string
7 Value int
8 Usage string
9 ShortName string
10 Hidden bool
11}
12
13func (f *IntFlag) Set(v string) {
14 i, _ := strconv.ParseInt(v, 10, 32)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected