We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b22fc70 commit 68f4136Copy full SHA for 68f4136
flag.go
@@ -190,9 +190,15 @@ type Value interface {
190
Type() string
191
}
192
193
+// SliceValue is a secondary interface to all flags which hold a list
194
+// of values. This allows full control over the value of list flags,
195
+// and avoids complicated marshalling and unmarshalling to csv.
196
type SliceValue interface {
197
+ // Append adds the specified value to the end of the flag value list.
198
Append(string) error
199
+ // Replace will fully overwrite any data currently in the flag value list.
200
Replace([]string) error
201
+ // GetSlice returns the flag value list as an array of strings.
202
GetSlice() []string
203
204
0 commit comments