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

Struct StringSliceFlag

cf/flags/stringSlice.go:4–10  ·  view source on GitHub ↗

StringSlice flag can be define multiple times in the arguments

Source from the content-addressed store, hash-verified

2
3// StringSlice flag can be define multiple times in the arguments
4type StringSliceFlag struct {
5 Name string
6 Value []string
7 Usage string
8 ShortName string
9 Hidden bool
10}
11
12func (f *StringSliceFlag) Set(v string) {
13 f.Value = append(f.Value, v)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected