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

Struct Float64Flag

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected